Skip to content

Commit 4fa4a98

Browse files
committed
Deeplink fix
1 parent 19e258a commit 4fa4a98

3 files changed

Lines changed: 89 additions & 60 deletions

File tree

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@
3636
<data android:scheme="mccompanion"/>
3737
</intent-filter>
3838

39-
<!-- App Links: https://mccompanion.net/u?name=USERNAME -->
39+
<!-- App Links: /u?name=USERNAME (profile), /j?ip=&port= (join) -->
4040
<intent-filter android:autoVerify="true">
4141
<action android:name="android.intent.action.VIEW"/>
4242
<category android:name="android.intent.category.DEFAULT"/>
4343
<category android:name="android.intent.category.BROWSABLE"/>
4444
<data android:scheme="https" android:host="mccompanion.net" android:pathPrefix="/u"/>
45+
<data android:scheme="https" android:host="mccompanion.net" android:pathPrefix="/j"/>
4546
</intent-filter>
4647
</activity>
4748

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
1313
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
1414
78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */ = {isa = PBXBuildFile; productRef = 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */; };
15-
83CBD74E6F9BB7DB516A196F /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3076F9CB46290D4D6E10B1F1 /* Pods_Runner.framework */; };
15+
9722743266C0D162901092D1 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E04BE0DB81CFEDE276312AD1 /* Pods_RunnerTests.framework */; };
1616
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
1717
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
1818
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
19-
B83C3D5C61A1DBCFC313D9BD /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C5212B0C018A21223BA15DF3 /* Pods_RunnerTests.framework */; };
19+
C385D97D98D52DCF0A0A4A1F /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2391757E7184D909DDA8F7EC /* Pods_Runner.framework */; };
2020
CF7ED1FF2A68B1A2000F6F4E /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = CF7ED1FE2A68B1A1000F6F4E /* GoogleService-Info.plist */; };
2121
/* End PBXBuildFile section */
2222

@@ -44,14 +44,17 @@
4444
/* End PBXCopyFilesBuildPhase section */
4545

4646
/* Begin PBXFileReference section */
47-
0A0B67E4D61D529A2A999C1A /* 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>"; };
47+
056039B637C03389D783D057 /* 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>"; };
48+
0A16399C6B20AD900B6A966A /* 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>"; };
4849
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
4950
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
50-
3076F9CB46290D4D6E10B1F1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
51+
2391757E7184D909DDA8F7EC /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5152
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
5253
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
54+
35E84DBC4EDCEEF345B24571 /* 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>"; };
5355
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
54-
424F863C7561B44E21025436 /* 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>"; };
56+
5BE80566BA6C1D11A8C8A03B /* 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>"; };
57+
672648F636DE80069EB3AF1C /* 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>"; };
5558
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
5659
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
5760
78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FlutterGeneratedPluginSwiftPackage; path = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; sourceTree = "<group>"; };
@@ -63,21 +66,18 @@
6366
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
6467
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
6568
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
66-
9B59F252C68216CC489479D2 /* 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>"; };
67-
C3C2E987BBB95C7175F2106E /* 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>"; };
68-
C5212B0C018A21223BA15DF3 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6969
CF7ED1FE2A68B1A1000F6F4E /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
7070
CF8A00011CF9000F007C1B7D /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = "<group>"; };
71-
EA51C78CE0E8C3FE0892A7CA /* 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>"; };
72-
EDC3D26F337508E50FF0E434 /* 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>"; };
71+
D32034C4BD9181BE33E6657D /* 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>"; };
72+
E04BE0DB81CFEDE276312AD1 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7373
/* End PBXFileReference section */
7474

7575
/* Begin PBXFrameworksBuildPhase section */
7676
5802127CBDAB87134A4A9654 /* Frameworks */ = {
7777
isa = PBXFrameworksBuildPhase;
7878
buildActionMask = 2147483647;
7979
files = (
80-
B83C3D5C61A1DBCFC313D9BD /* Pods_RunnerTests.framework in Frameworks */,
80+
9722743266C0D162901092D1 /* Pods_RunnerTests.framework in Frameworks */,
8181
);
8282
runOnlyForDeploymentPostprocessing = 0;
8383
};
@@ -86,18 +86,18 @@
8686
buildActionMask = 2147483647;
8787
files = (
8888
78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */,
89-
83CBD74E6F9BB7DB516A196F /* Pods_Runner.framework in Frameworks */,
89+
C385D97D98D52DCF0A0A4A1F /* Pods_Runner.framework in Frameworks */,
9090
);
9191
runOnlyForDeploymentPostprocessing = 0;
9292
};
9393
/* End PBXFrameworksBuildPhase section */
9494

9595
/* Begin PBXGroup section */
96-
1341375ED8CF0740CD000A19 /* Frameworks */ = {
96+
178C7896291702290CB0464B /* Frameworks */ = {
9797
isa = PBXGroup;
9898
children = (
99-
3076F9CB46290D4D6E10B1F1 /* Pods_Runner.framework */,
100-
C5212B0C018A21223BA15DF3 /* Pods_RunnerTests.framework */,
99+
2391757E7184D909DDA8F7EC /* Pods_Runner.framework */,
100+
E04BE0DB81CFEDE276312AD1 /* Pods_RunnerTests.framework */,
101101
);
102102
name = Frameworks;
103103
sourceTree = "<group>";
@@ -130,7 +130,7 @@
130130
97C146EF1CF9000F007C117D /* Products */,
131131
331C8082294A63A400263BE5 /* RunnerTests */,
132132
EA8B8CB1D95C41E83EE132F2 /* Pods */,
133-
1341375ED8CF0740CD000A19 /* Frameworks */,
133+
178C7896291702290CB0464B /* Frameworks */,
134134
);
135135
sourceTree = "<group>";
136136
};
@@ -163,12 +163,12 @@
163163
EA8B8CB1D95C41E83EE132F2 /* Pods */ = {
164164
isa = PBXGroup;
165165
children = (
166-
9B59F252C68216CC489479D2 /* Pods-Runner.debug.xcconfig */,
167-
EDC3D26F337508E50FF0E434 /* Pods-Runner.release.xcconfig */,
168-
C3C2E987BBB95C7175F2106E /* Pods-Runner.profile.xcconfig */,
169-
EA51C78CE0E8C3FE0892A7CA /* Pods-RunnerTests.debug.xcconfig */,
170-
0A0B67E4D61D529A2A999C1A /* Pods-RunnerTests.release.xcconfig */,
171-
424F863C7561B44E21025436 /* Pods-RunnerTests.profile.xcconfig */,
166+
35E84DBC4EDCEEF345B24571 /* Pods-Runner.debug.xcconfig */,
167+
0A16399C6B20AD900B6A966A /* Pods-Runner.release.xcconfig */,
168+
056039B637C03389D783D057 /* Pods-Runner.profile.xcconfig */,
169+
672648F636DE80069EB3AF1C /* Pods-RunnerTests.debug.xcconfig */,
170+
5BE80566BA6C1D11A8C8A03B /* Pods-RunnerTests.release.xcconfig */,
171+
D32034C4BD9181BE33E6657D /* Pods-RunnerTests.profile.xcconfig */,
172172
);
173173
path = Pods;
174174
sourceTree = "<group>";
@@ -180,7 +180,7 @@
180180
isa = PBXNativeTarget;
181181
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
182182
buildPhases = (
183-
3E3363F7D55FC4162FE38814 /* [CP] Check Pods Manifest.lock */,
183+
1AE21FFE643FD39C88D897F1 /* [CP] Check Pods Manifest.lock */,
184184
331C807D294A63A400263BE5 /* Sources */,
185185
331C807F294A63A400263BE5 /* Resources */,
186186
5802127CBDAB87134A4A9654 /* Frameworks */,
@@ -199,15 +199,15 @@
199199
isa = PBXNativeTarget;
200200
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
201201
buildPhases = (
202-
E697C30B40C7B665AB5B0D3F /* [CP] Check Pods Manifest.lock */,
202+
9D74E4D34E81D7163A9E8FA0 /* [CP] Check Pods Manifest.lock */,
203203
9740EEB61CF901F6004384FC /* Run Script */,
204204
97C146EA1CF9000F007C117D /* Sources */,
205205
97C146EB1CF9000F007C117D /* Frameworks */,
206206
97C146EC1CF9000F007C117D /* Resources */,
207207
9705A1C41CF9048500538489 /* Embed Frameworks */,
208208
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
209-
0AD44EE2A379730DE5D2A115 /* [CP] Embed Pods Frameworks */,
210-
68B51BE0BE9E690F2A929FF7 /* [CP] Copy Pods Resources */,
209+
6A5A6D78F2F3A8BA91A34B34 /* [CP] Embed Pods Frameworks */,
210+
026FDA4ABCBFA517C4BA844C /* [CP] Copy Pods Resources */,
211211
);
212212
buildRules = (
213213
);
@@ -286,76 +286,76 @@
286286
/* End PBXResourcesBuildPhase section */
287287

288288
/* Begin PBXShellScriptBuildPhase section */
289-
0AD44EE2A379730DE5D2A115 /* [CP] Embed Pods Frameworks */ = {
289+
026FDA4ABCBFA517C4BA844C /* [CP] Copy Pods Resources */ = {
290290
isa = PBXShellScriptBuildPhase;
291291
buildActionMask = 2147483647;
292292
files = (
293293
);
294294
inputFileListPaths = (
295-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
295+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist",
296296
);
297-
name = "[CP] Embed Pods Frameworks";
297+
name = "[CP] Copy Pods Resources";
298298
outputFileListPaths = (
299-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
299+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist",
300300
);
301301
runOnlyForDeploymentPostprocessing = 0;
302302
shellPath = /bin/sh;
303-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
303+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
304304
showEnvVarsInLog = 0;
305305
};
306-
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
306+
1AE21FFE643FD39C88D897F1 /* [CP] Check Pods Manifest.lock */ = {
307307
isa = PBXShellScriptBuildPhase;
308-
alwaysOutOfDate = 1;
309308
buildActionMask = 2147483647;
310309
files = (
311310
);
311+
inputFileListPaths = (
312+
);
312313
inputPaths = (
313-
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
314+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
315+
"${PODS_ROOT}/Manifest.lock",
316+
);
317+
name = "[CP] Check Pods Manifest.lock";
318+
outputFileListPaths = (
314319
);
315-
name = "Thin Binary";
316320
outputPaths = (
321+
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
317322
);
318323
runOnlyForDeploymentPostprocessing = 0;
319324
shellPath = /bin/sh;
320-
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
325+
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";
326+
showEnvVarsInLog = 0;
321327
};
322-
3E3363F7D55FC4162FE38814 /* [CP] Check Pods Manifest.lock */ = {
328+
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
323329
isa = PBXShellScriptBuildPhase;
330+
alwaysOutOfDate = 1;
324331
buildActionMask = 2147483647;
325332
files = (
326333
);
327-
inputFileListPaths = (
328-
);
329334
inputPaths = (
330-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
331-
"${PODS_ROOT}/Manifest.lock",
332-
);
333-
name = "[CP] Check Pods Manifest.lock";
334-
outputFileListPaths = (
335+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
335336
);
337+
name = "Thin Binary";
336338
outputPaths = (
337-
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
338339
);
339340
runOnlyForDeploymentPostprocessing = 0;
340341
shellPath = /bin/sh;
341-
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";
342-
showEnvVarsInLog = 0;
342+
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
343343
};
344-
68B51BE0BE9E690F2A929FF7 /* [CP] Copy Pods Resources */ = {
344+
6A5A6D78F2F3A8BA91A34B34 /* [CP] Embed Pods Frameworks */ = {
345345
isa = PBXShellScriptBuildPhase;
346346
buildActionMask = 2147483647;
347347
files = (
348348
);
349349
inputFileListPaths = (
350-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist",
350+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
351351
);
352-
name = "[CP] Copy Pods Resources";
352+
name = "[CP] Embed Pods Frameworks";
353353
outputFileListPaths = (
354-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist",
354+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
355355
);
356356
runOnlyForDeploymentPostprocessing = 0;
357357
shellPath = /bin/sh;
358-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
358+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
359359
showEnvVarsInLog = 0;
360360
};
361361
9740EEB61CF901F6004384FC /* Run Script */ = {
@@ -373,7 +373,7 @@
373373
shellPath = /bin/sh;
374374
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
375375
};
376-
E697C30B40C7B665AB5B0D3F /* [CP] Check Pods Manifest.lock */ = {
376+
9D74E4D34E81D7163A9E8FA0 /* [CP] Check Pods Manifest.lock */ = {
377377
isa = PBXShellScriptBuildPhase;
378378
buildActionMask = 2147483647;
379379
files = (
@@ -524,7 +524,7 @@
524524
};
525525
331C8088294A63A400263BE5 /* Debug */ = {
526526
isa = XCBuildConfiguration;
527-
baseConfigurationReference = EA51C78CE0E8C3FE0892A7CA /* Pods-RunnerTests.debug.xcconfig */;
527+
baseConfigurationReference = 672648F636DE80069EB3AF1C /* Pods-RunnerTests.debug.xcconfig */;
528528
buildSettings = {
529529
BUNDLE_LOADER = "$(TEST_HOST)";
530530
CODE_SIGN_STYLE = Automatic;
@@ -542,7 +542,7 @@
542542
};
543543
331C8089294A63A400263BE5 /* Release */ = {
544544
isa = XCBuildConfiguration;
545-
baseConfigurationReference = 0A0B67E4D61D529A2A999C1A /* Pods-RunnerTests.release.xcconfig */;
545+
baseConfigurationReference = 5BE80566BA6C1D11A8C8A03B /* Pods-RunnerTests.release.xcconfig */;
546546
buildSettings = {
547547
BUNDLE_LOADER = "$(TEST_HOST)";
548548
CODE_SIGN_STYLE = Automatic;
@@ -558,7 +558,7 @@
558558
};
559559
331C808A294A63A400263BE5 /* Profile */ = {
560560
isa = XCBuildConfiguration;
561-
baseConfigurationReference = 424F863C7561B44E21025436 /* Pods-RunnerTests.profile.xcconfig */;
561+
baseConfigurationReference = D32034C4BD9181BE33E6657D /* Pods-RunnerTests.profile.xcconfig */;
562562
buildSettings = {
563563
BUNDLE_LOADER = "$(TEST_HOST)";
564564
CODE_SIGN_STYLE = Automatic;

0 commit comments

Comments
 (0)