+3
.gitignore
+3
.gitignore
+1
-1
ios/Flutter/AppFrameworkInfo.plist
+1
-1
ios/Flutter/AppFrameworkInfo.plist
+1
ios/Flutter/Debug.xcconfig
+1
ios/Flutter/Debug.xcconfig
+1
ios/Flutter/Release.xcconfig
+1
ios/Flutter/Release.xcconfig
+43
ios/Podfile
+43
ios/Podfile
···
1
+
# Uncomment this line to define a global platform for your project
2
+
# platform :ios, '13.0'
3
+
4
+
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5
+
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6
+
7
+
project 'Runner', {
8
+
'Debug' => :debug,
9
+
'Profile' => :release,
10
+
'Release' => :release,
11
+
}
12
+
13
+
def flutter_root
14
+
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
15
+
unless File.exist?(generated_xcode_build_settings_path)
16
+
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
17
+
end
18
+
19
+
File.foreach(generated_xcode_build_settings_path) do |line|
20
+
matches = line.match(/FLUTTER_ROOT\=(.*)/)
21
+
return matches[1].strip if matches
22
+
end
23
+
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
24
+
end
25
+
26
+
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
27
+
28
+
flutter_ios_podfile_setup
29
+
30
+
target 'Runner' do
31
+
use_frameworks!
32
+
33
+
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
34
+
target 'RunnerTests' do
35
+
inherit! :search_paths
36
+
end
37
+
end
38
+
39
+
post_install do |installer|
40
+
installer.pods_project.targets.each do |target|
41
+
flutter_additional_ios_build_settings(target)
42
+
end
43
+
end
+68
ios/Podfile.lock
+68
ios/Podfile.lock
···
1
+
PODS:
2
+
- Flutter (1.0.0)
3
+
- flutter_secure_storage (6.0.0):
4
+
- Flutter
5
+
- flutter_web_auth_2 (3.0.0):
6
+
- Flutter
7
+
- path_provider_foundation (0.0.1):
8
+
- Flutter
9
+
- FlutterMacOS
10
+
- share_plus (0.0.1):
11
+
- Flutter
12
+
- shared_preferences_foundation (0.0.1):
13
+
- Flutter
14
+
- FlutterMacOS
15
+
- sqflite_darwin (0.0.4):
16
+
- Flutter
17
+
- FlutterMacOS
18
+
- url_launcher_ios (0.0.1):
19
+
- Flutter
20
+
- video_player_avfoundation (0.0.1):
21
+
- Flutter
22
+
- FlutterMacOS
23
+
24
+
DEPENDENCIES:
25
+
- Flutter (from `Flutter`)
26
+
- flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`)
27
+
- flutter_web_auth_2 (from `.symlinks/plugins/flutter_web_auth_2/ios`)
28
+
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
29
+
- share_plus (from `.symlinks/plugins/share_plus/ios`)
30
+
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
31
+
- sqflite_darwin (from `.symlinks/plugins/sqflite_darwin/darwin`)
32
+
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
33
+
- video_player_avfoundation (from `.symlinks/plugins/video_player_avfoundation/darwin`)
34
+
35
+
EXTERNAL SOURCES:
36
+
Flutter:
37
+
:path: Flutter
38
+
flutter_secure_storage:
39
+
:path: ".symlinks/plugins/flutter_secure_storage/ios"
40
+
flutter_web_auth_2:
41
+
:path: ".symlinks/plugins/flutter_web_auth_2/ios"
42
+
path_provider_foundation:
43
+
:path: ".symlinks/plugins/path_provider_foundation/darwin"
44
+
share_plus:
45
+
:path: ".symlinks/plugins/share_plus/ios"
46
+
shared_preferences_foundation:
47
+
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
48
+
sqflite_darwin:
49
+
:path: ".symlinks/plugins/sqflite_darwin/darwin"
50
+
url_launcher_ios:
51
+
:path: ".symlinks/plugins/url_launcher_ios/ios"
52
+
video_player_avfoundation:
53
+
:path: ".symlinks/plugins/video_player_avfoundation/darwin"
54
+
55
+
SPEC CHECKSUMS:
56
+
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
57
+
flutter_secure_storage: 1ed9476fba7e7a782b22888f956cce43e2c62f13
58
+
flutter_web_auth_2: 5c8d9dcd7848b5a9efb086d24e7a9adcae979c80
59
+
path_provider_foundation: bb55f6dbba17d0dccd6737fe6f7f34fbd0376880
60
+
share_plus: 50da8cb520a8f0f65671c6c6a99b3617ed10a58a
61
+
shared_preferences_foundation: 7036424c3d8ec98dfe75ff1667cb0cd531ec82bb
62
+
sqflite_darwin: 20b2a3a3b70e43edae938624ce550a3cbf66a3d0
63
+
url_launcher_ios: 7a95fa5b60cc718a708b8f2966718e93db0cef1b
64
+
video_player_avfoundation: dd410b52df6d2466a42d28550e33e4146928280a
65
+
66
+
PODFILE CHECKSUM: 3c63482e143d1b91d2d2560aee9fb04ecc74ac7e
67
+
68
+
COCOAPODS: 1.16.2
+115
-3
ios/Runner.xcodeproj/project.pbxproj
+115
-3
ios/Runner.xcodeproj/project.pbxproj
···
8
8
9
9
/* Begin PBXBuildFile section */
10
10
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11
+
16E67738C4AF07C35AA47470 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82EC9CF23352AC72F2003AAD /* Pods_RunnerTests.framework */; };
12
+
2220618238061C279E522B7E /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2A2DB00FCDBEA05F362717D /* Pods_Runner.framework */; };
11
13
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
12
14
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
13
15
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
···
42
44
/* Begin PBXFileReference section */
43
45
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
44
46
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
47
+
24C909BB605D55AC18D4D709 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
45
48
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
46
49
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
47
50
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
51
+
58C1A39422F3ADDA7073882C /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
52
+
62C533E7959427EBD54BF4E0 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
53
+
7404320A2A2665D2993CC4A9 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
48
54
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
49
55
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
50
56
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
57
+
82EC9CF23352AC72F2003AAD /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
58
+
91248B6140D65FC329BE4089 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
51
59
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
52
60
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
53
61
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
···
55
63
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
56
64
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
57
65
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
66
+
CAFF337A6DF135B15E2E5A82 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
67
+
D2A2DB00FCDBEA05F362717D /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
58
68
F2B3C8D12D0C8A5E00ABCDEF /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = "<group>"; };
59
69
/* End PBXFileReference section */
60
70
61
71
/* Begin PBXFrameworksBuildPhase section */
72
+
6A654D0E96DDFAB5016AAB44 /* Frameworks */ = {
73
+
isa = PBXFrameworksBuildPhase;
74
+
buildActionMask = 2147483647;
75
+
files = (
76
+
16E67738C4AF07C35AA47470 /* Pods_RunnerTests.framework in Frameworks */,
77
+
);
78
+
runOnlyForDeploymentPostprocessing = 0;
79
+
};
62
80
97C146EB1CF9000F007C117D /* Frameworks */ = {
63
81
isa = PBXFrameworksBuildPhase;
64
82
buildActionMask = 2147483647;
65
83
files = (
84
+
2220618238061C279E522B7E /* Pods_Runner.framework in Frameworks */,
66
85
);
67
86
runOnlyForDeploymentPostprocessing = 0;
68
87
};
···
77
96
path = RunnerTests;
78
97
sourceTree = "<group>";
79
98
};
99
+
86A9EDA55647EB05647C404F /* Frameworks */ = {
100
+
isa = PBXGroup;
101
+
children = (
102
+
D2A2DB00FCDBEA05F362717D /* Pods_Runner.framework */,
103
+
82EC9CF23352AC72F2003AAD /* Pods_RunnerTests.framework */,
104
+
);
105
+
name = Frameworks;
106
+
sourceTree = "<group>";
107
+
};
108
+
8AC347B174FB51D9D1783044 /* Pods */ = {
109
+
isa = PBXGroup;
110
+
children = (
111
+
91248B6140D65FC329BE4089 /* Pods-Runner.debug.xcconfig */,
112
+
7404320A2A2665D2993CC4A9 /* Pods-Runner.release.xcconfig */,
113
+
62C533E7959427EBD54BF4E0 /* Pods-Runner.profile.xcconfig */,
114
+
24C909BB605D55AC18D4D709 /* Pods-RunnerTests.debug.xcconfig */,
115
+
58C1A39422F3ADDA7073882C /* Pods-RunnerTests.release.xcconfig */,
116
+
CAFF337A6DF135B15E2E5A82 /* Pods-RunnerTests.profile.xcconfig */,
117
+
);
118
+
name = Pods;
119
+
path = Pods;
120
+
sourceTree = "<group>";
121
+
};
80
122
9740EEB11CF90186004384FC /* Flutter */ = {
81
123
isa = PBXGroup;
82
124
children = (
···
95
137
97C146F01CF9000F007C117D /* Runner */,
96
138
97C146EF1CF9000F007C117D /* Products */,
97
139
331C8082294A63A400263BE5 /* RunnerTests */,
140
+
8AC347B174FB51D9D1783044 /* Pods */,
141
+
86A9EDA55647EB05647C404F /* Frameworks */,
98
142
);
99
143
sourceTree = "<group>";
100
144
};
···
130
174
isa = PBXNativeTarget;
131
175
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
132
176
buildPhases = (
177
+
0D16B9D95FB392A9811278BE /* [CP] Check Pods Manifest.lock */,
133
178
331C807D294A63A400263BE5 /* Sources */,
134
179
331C807F294A63A400263BE5 /* Resources */,
180
+
6A654D0E96DDFAB5016AAB44 /* Frameworks */,
135
181
);
136
182
buildRules = (
137
183
);
···
147
193
isa = PBXNativeTarget;
148
194
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
149
195
buildPhases = (
196
+
5D065FE9468A69BB975A017A /* [CP] Check Pods Manifest.lock */,
150
197
9740EEB61CF901F6004384FC /* Run Script */,
151
198
97C146EA1CF9000F007C117D /* Sources */,
152
199
97C146EB1CF9000F007C117D /* Frameworks */,
153
200
97C146EC1CF9000F007C117D /* Resources */,
154
201
9705A1C41CF9048500538489 /* Embed Frameworks */,
155
202
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
203
+
A11CDD673B8A553D9BF96957 /* [CP] Embed Pods Frameworks */,
156
204
);
157
205
buildRules = (
158
206
);
···
224
272
/* End PBXResourcesBuildPhase section */
225
273
226
274
/* Begin PBXShellScriptBuildPhase section */
275
+
0D16B9D95FB392A9811278BE /* [CP] Check Pods Manifest.lock */ = {
276
+
isa = PBXShellScriptBuildPhase;
277
+
buildActionMask = 2147483647;
278
+
files = (
279
+
);
280
+
inputFileListPaths = (
281
+
);
282
+
inputPaths = (
283
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
284
+
"${PODS_ROOT}/Manifest.lock",
285
+
);
286
+
name = "[CP] Check Pods Manifest.lock";
287
+
outputFileListPaths = (
288
+
);
289
+
outputPaths = (
290
+
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
291
+
);
292
+
runOnlyForDeploymentPostprocessing = 0;
293
+
shellPath = /bin/sh;
294
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
295
+
showEnvVarsInLog = 0;
296
+
};
227
297
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
228
298
isa = PBXShellScriptBuildPhase;
229
299
alwaysOutOfDate = 1;
···
240
310
shellPath = /bin/sh;
241
311
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
242
312
};
313
+
5D065FE9468A69BB975A017A /* [CP] Check Pods Manifest.lock */ = {
314
+
isa = PBXShellScriptBuildPhase;
315
+
buildActionMask = 2147483647;
316
+
files = (
317
+
);
318
+
inputFileListPaths = (
319
+
);
320
+
inputPaths = (
321
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
322
+
"${PODS_ROOT}/Manifest.lock",
323
+
);
324
+
name = "[CP] Check Pods Manifest.lock";
325
+
outputFileListPaths = (
326
+
);
327
+
outputPaths = (
328
+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
329
+
);
330
+
runOnlyForDeploymentPostprocessing = 0;
331
+
shellPath = /bin/sh;
332
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
333
+
showEnvVarsInLog = 0;
334
+
};
243
335
9740EEB61CF901F6004384FC /* Run Script */ = {
244
336
isa = PBXShellScriptBuildPhase;
245
337
alwaysOutOfDate = 1;
···
255
347
shellPath = /bin/sh;
256
348
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
257
349
};
350
+
A11CDD673B8A553D9BF96957 /* [CP] Embed Pods Frameworks */ = {
351
+
isa = PBXShellScriptBuildPhase;
352
+
buildActionMask = 2147483647;
353
+
files = (
354
+
);
355
+
inputFileListPaths = (
356
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
357
+
);
358
+
name = "[CP] Embed Pods Frameworks";
359
+
outputFileListPaths = (
360
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
361
+
);
362
+
runOnlyForDeploymentPostprocessing = 0;
363
+
shellPath = /bin/sh;
364
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
365
+
showEnvVarsInLog = 0;
366
+
};
258
367
/* End PBXShellScriptBuildPhase section */
259
368
260
369
/* Begin PBXSourcesBuildPhase section */
···
348
457
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
349
458
GCC_WARN_UNUSED_FUNCTION = YES;
350
459
GCC_WARN_UNUSED_VARIABLE = YES;
351
-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
460
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
352
461
MTL_ENABLE_DEBUG_INFO = NO;
353
462
SDKROOT = iphoneos;
354
463
SUPPORTED_PLATFORMS = iphoneos;
···
381
490
};
382
491
331C8088294A63A400263BE5 /* Debug */ = {
383
492
isa = XCBuildConfiguration;
493
+
baseConfigurationReference = 24C909BB605D55AC18D4D709 /* Pods-RunnerTests.debug.xcconfig */;
384
494
buildSettings = {
385
495
BUNDLE_LOADER = "$(TEST_HOST)";
386
496
CODE_SIGN_STYLE = Automatic;
···
398
508
};
399
509
331C8089294A63A400263BE5 /* Release */ = {
400
510
isa = XCBuildConfiguration;
511
+
baseConfigurationReference = 58C1A39422F3ADDA7073882C /* Pods-RunnerTests.release.xcconfig */;
401
512
buildSettings = {
402
513
BUNDLE_LOADER = "$(TEST_HOST)";
403
514
CODE_SIGN_STYLE = Automatic;
···
413
524
};
414
525
331C808A294A63A400263BE5 /* Profile */ = {
415
526
isa = XCBuildConfiguration;
527
+
baseConfigurationReference = CAFF337A6DF135B15E2E5A82 /* Pods-RunnerTests.profile.xcconfig */;
416
528
buildSettings = {
417
529
BUNDLE_LOADER = "$(TEST_HOST)";
418
530
CODE_SIGN_STYLE = Automatic;
···
475
587
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
476
588
GCC_WARN_UNUSED_FUNCTION = YES;
477
589
GCC_WARN_UNUSED_VARIABLE = YES;
478
-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
590
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
479
591
MTL_ENABLE_DEBUG_INFO = YES;
480
592
ONLY_ACTIVE_ARCH = YES;
481
593
SDKROOT = iphoneos;
···
526
638
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
527
639
GCC_WARN_UNUSED_FUNCTION = YES;
528
640
GCC_WARN_UNUSED_VARIABLE = YES;
529
-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
641
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
530
642
MTL_ENABLE_DEBUG_INFO = NO;
531
643
SDKROOT = iphoneos;
532
644
SUPPORTED_PLATFORMS = iphoneos;
+3
ios/Runner.xcworkspace/contents.xcworkspacedata
+3
ios/Runner.xcworkspace/contents.xcworkspacedata
+4
-4
pubspec.lock
+4
-4
pubspec.lock
···
548
548
dependency: transitive
549
549
description:
550
550
name: meta
551
-
sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
551
+
sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
552
552
url: "https://pub.dev"
553
553
source: hosted
554
-
version: "1.16.0"
554
+
version: "1.17.0"
555
555
mime:
556
556
dependency: transitive
557
557
description:
···
937
937
dependency: transitive
938
938
description:
939
939
name: test_api
940
-
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
940
+
sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55
941
941
url: "https://pub.dev"
942
942
source: hosted
943
-
version: "0.7.6"
943
+
version: "0.7.7"
944
944
typed_data:
945
945
dependency: transitive
946
946
description: