Skip to content

Commit 50cf130

Browse files
committed
build: update deps
1 parent f7f9649 commit 50cf130

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '11.0'
2+
# platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

example/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ EXTERNAL SOURCES:
2020
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
2121

2222
SPEC CHECKSUMS:
23-
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
23+
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
2424
image_picker_ios: 4a8aadfbb6dc30ad5141a2ce3832af9214a705b5
2525
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126
2626

27-
PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3
27+
PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011
2828

29-
COCOAPODS: 1.12.1
29+
COCOAPODS: 1.11.3

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
97C146E61CF9000F007C117D /* Project object */ = {
157157
isa = PBXProject;
158158
attributes = {
159-
LastUpgradeCheck = 1300;
159+
LastUpgradeCheck = 1430;
160160
ORGANIZATIONNAME = "";
161161
TargetAttributes = {
162162
97C146ED1CF9000F007C117D = {
@@ -343,7 +343,7 @@
343343
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
344344
GCC_WARN_UNUSED_FUNCTION = YES;
345345
GCC_WARN_UNUSED_VARIABLE = YES;
346-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
346+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
347347
MTL_ENABLE_DEBUG_INFO = NO;
348348
SDKROOT = iphoneos;
349349
SUPPORTED_PLATFORMS = iphoneos;
@@ -421,7 +421,7 @@
421421
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
422422
GCC_WARN_UNUSED_FUNCTION = YES;
423423
GCC_WARN_UNUSED_VARIABLE = YES;
424-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
424+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
425425
MTL_ENABLE_DEBUG_INFO = YES;
426426
ONLY_ACTIVE_ARCH = YES;
427427
SDKROOT = iphoneos;
@@ -470,7 +470,7 @@
470470
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
471471
GCC_WARN_UNUSED_FUNCTION = YES;
472472
GCC_WARN_UNUSED_VARIABLE = YES;
473-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
473+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
474474
MTL_ENABLE_DEBUG_INFO = NO;
475475
SDKROOT = iphoneos;
476476
SUPPORTED_PLATFORMS = iphoneos;

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1300"
3+
LastUpgradeVersion = "1430"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

example/lib/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import 'weather_app.dart';
66
void main() => runApp(const ExamplesApp());
77

88
class ExamplesApp extends StatelessWidget {
9-
const ExamplesApp({Key? key}) : super(key: key);
9+
const ExamplesApp({super.key});
1010

1111
@override
1212
Widget build(BuildContext context) {
@@ -17,7 +17,7 @@ class ExamplesApp extends StatelessWidget {
1717
}
1818

1919
class ExamplesMenuScreen extends StatelessWidget {
20-
const ExamplesMenuScreen({Key? key}) : super(key: key);
20+
const ExamplesMenuScreen({super.key});
2121

2222
@override
2323
Widget build(BuildContext context) {

example/lib/multipart_app.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import 'package:http_interceptor_example/credentials.dart';
99
import 'package:image_picker/image_picker.dart';
1010

1111
class MultipartApp extends StatefulWidget {
12-
const MultipartApp({Key? key}) : super(key: key);
12+
const MultipartApp({super.key});
1313

1414
static Route<void> route() {
1515
return MaterialPageRoute(builder: (ctx) => const MultipartApp());

example/lib/weather_app.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import 'cities.dart';
1313
import 'credentials.dart';
1414

1515
class WeatherApp extends StatefulWidget {
16-
const WeatherApp({Key? key}) : super(key: key);
16+
const WeatherApp({super.key});
1717

1818
static Route<void> route() {
1919
return MaterialPageRoute(builder: (ctx) => const WeatherApp());

example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ dependencies:
1111
sdk: flutter
1212
http_interceptor:
1313
path: ../
14-
image_picker: ^0.8.8
15-
shared_preferences: ^2.1.2
14+
image_picker: ^0.8.9
15+
shared_preferences: ^2.2.2
1616

1717
dev_dependencies:
18-
flutter_lints: ^2.0.1
18+
flutter_lints: ^3.0.1
1919
flutter_test:
2020
sdk: flutter
2121

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ dependencies:
1414
http: ^1.0.0
1515

1616
dev_dependencies:
17-
lints: ^2.1.1
18-
test: ^1.24.3
17+
lints: ^3.0.0
18+
test: ^1.25.2

0 commit comments

Comments
 (0)