Skip to content

Commit d05ae6d

Browse files
committed
Update adaptive_app
1 parent 5c569ee commit d05ae6d

File tree

11 files changed

+555
-500
lines changed

11 files changed

+555
-500
lines changed

adaptive_app/codelab_rebuild.yaml

Lines changed: 40 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1314,9 +1314,9 @@ steps:
13141314
- name: flutter pub get
13151315
path: adaptive_app
13161316
flutter: pub get
1317-
- name: Add googleapis_auth google_sign_in extension_google_sign_in_as_googleapis_auth
1317+
- name: Add googleapis_auth google_sign_in extension_google_sign_in_as_googleapis_auth logging
13181318
path: adaptive_app
1319-
flutter: pub add googleapis_auth google_sign_in extension_google_sign_in_as_googleapis_auth
1319+
flutter: pub add googleapis_auth google_sign_in extension_google_sign_in_as_googleapis_auth logging
13201320
- name: Patch .gitignore
13211321
path: adaptive_app/.gitignore
13221322
patch-u: |
@@ -1336,6 +1336,7 @@ steps:
13361336
// Use of this source code is governed by a BSD-style license that can be
13371337
// found in the LICENSE file.
13381338
1339+
import 'dart:async';
13391340
import 'dart:io' show Platform;
13401341
13411342
import 'package:extension_google_sign_in_as_googleapis_auth/extension_google_sign_in_as_googleapis_auth.dart';
@@ -1344,11 +1345,14 @@ steps:
13441345
import 'package:go_router/go_router.dart';
13451346
import 'package:google_sign_in/google_sign_in.dart';
13461347
import 'package:googleapis_auth/auth_io.dart';
1348+
import 'package:logging/logging.dart';
13471349
import 'package:provider/provider.dart';
13481350
import 'package:url_launcher/link.dart';
13491351
13501352
import 'app_state.dart';
13511353
1354+
final _log = Logger('AdaptiveLogin');
1355+
13521356
typedef _AdaptiveLoginButtonWidget =
13531357
Widget Function({required VoidCallback? onPressed});
13541358
@@ -1395,29 +1399,52 @@ steps:
13951399
@override
13961400
initState() {
13971401
super.initState();
1398-
_googleSignIn = GoogleSignIn(scopes: widget.scopes);
1399-
_googleSignIn.onCurrentUserChanged.listen((account) {
1400-
if (account != null) {
1401-
_googleSignIn.authenticatedClient().then((authClient) {
1402-
final context = this.context;
1403-
if (authClient != null && context.mounted) {
1404-
context.read<AuthedUserPlaylists>().authClient = authClient;
1405-
context.go('/');
1406-
}
1407-
});
1402+
_googleSignIn = GoogleSignIn.instance;
1403+
_googleSignIn.initialize();
1404+
_authEventsSubscription = _googleSignIn.authenticationEvents.listen((
1405+
event,
1406+
) async {
1407+
_log.fine('Google Sign-In authentication event: $event');
1408+
if (event is GoogleSignInAuthenticationEventSignIn) {
1409+
final googleSignInClientAuthorization = await event
1410+
.user
1411+
.authorizationClient
1412+
.authorizationForScopes(widget.scopes);
1413+
if (googleSignInClientAuthorization == null) {
1414+
_log.warning('Google Sign-In authenticated client creation failed');
1415+
return;
1416+
}
1417+
_log.fine('Google Sign-In authenticated client created');
1418+
final context = this.context;
1419+
if (context.mounted) {
1420+
context.read<AuthedUserPlaylists>().authClient =
1421+
googleSignInClientAuthorization.authClient(scopes: widget.scopes);
1422+
context.go('/');
1423+
}
14081424
}
14091425
});
1426+
1427+
// Check if user is already authenticated
1428+
_log.fine('Attempting lightweight authentication');
1429+
_googleSignIn.attemptLightweightAuthentication();
1430+
}
1431+
1432+
@override
1433+
dispose() {
1434+
_authEventsSubscription.cancel();
1435+
super.dispose();
14101436
}
14111437
14121438
late final GoogleSignIn _googleSignIn;
1439+
late final StreamSubscription _authEventsSubscription;
14131440
14141441
@override
14151442
Widget build(BuildContext context) {
14161443
return Scaffold(
14171444
body: Center(
14181445
child: widget.button(
14191446
onPressed: () {
1420-
_googleSignIn.signIn();
1447+
_googleSignIn.authenticate();
14211448
},
14221449
),
14231450
),

adaptive_app/step_04/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 57 additions & 57 deletions
Large diffs are not rendered by default.

adaptive_app/step_04/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
/* End PBXAggregateTarget section */
2222

2323
/* Begin PBXBuildFile section */
24+
2E65984B92F9DA1700D464B4 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE39E0772F19B8E21506327 /* Pods_Runner.framework */; };
2425
331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
2526
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
2627
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
2728
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
2829
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
2930
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
30-
53647FAF61F617BA3B007C03 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 37D1A7A1B1DF20E4946F7EE7 /* Pods_RunnerTests.framework */; };
31-
9228050728845E57C43E6171 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8028E4024CC152E9494AD52 /* Pods_Runner.framework */; };
31+
F52EB5165F1C7C2D38209D93 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BD697A023332DDE3CA43AA09 /* Pods_RunnerTests.framework */; };
3232
/* End PBXBuildFile section */
3333

3434
/* Begin PBXContainerItemProxy section */
@@ -62,9 +62,6 @@
6262
/* End PBXCopyFilesBuildPhase section */
6363

6464
/* Begin PBXFileReference section */
65-
00953292D3CAEBAD344DE8D1 /* 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>"; };
66-
1E0562F3F238083D875A013B /* 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>"; };
67-
23F67D5F6EB32828A6FB8A89 /* 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>"; };
6865
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
6966
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
7067
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
@@ -81,35 +78,52 @@
8178
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; };
8279
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; };
8380
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
84-
37D1A7A1B1DF20E4946F7EE7 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
85-
56EAC3B83F22717B6A8AD5ED /* 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>"; };
81+
4C6A8B679BEF4A510B37469B /* 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>"; };
82+
744086562EDCD1381D9EDE4E /* 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>"; };
8683
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
87-
7EF8CF5E83E7C0F416DA751E /* 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>"; };
84+
93D3EFDC14627833E7B468BE /* 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>"; };
8885
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
89-
9E3D485AA156E31CB583861D /* 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>"; };
90-
D8028E4024CC152E9494AD52 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
86+
A4BAFE7543A8448A363D4CD4 /* 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>"; };
87+
BD697A023332DDE3CA43AA09 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
88+
CC7975920D9F98F8D5464A5D /* 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>"; };
89+
D134F95F7D3E78CF95754E69 /* 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>"; };
90+
FAE39E0772F19B8E21506327 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9191
/* End PBXFileReference section */
9292

9393
/* Begin PBXFrameworksBuildPhase section */
9494
331C80D2294CF70F00263BE5 /* Frameworks */ = {
9595
isa = PBXFrameworksBuildPhase;
9696
buildActionMask = 2147483647;
9797
files = (
98-
53647FAF61F617BA3B007C03 /* Pods_RunnerTests.framework in Frameworks */,
98+
F52EB5165F1C7C2D38209D93 /* Pods_RunnerTests.framework in Frameworks */,
9999
);
100100
runOnlyForDeploymentPostprocessing = 0;
101101
};
102102
33CC10EA2044A3C60003C045 /* Frameworks */ = {
103103
isa = PBXFrameworksBuildPhase;
104104
buildActionMask = 2147483647;
105105
files = (
106-
9228050728845E57C43E6171 /* Pods_Runner.framework in Frameworks */,
106+
2E65984B92F9DA1700D464B4 /* Pods_Runner.framework in Frameworks */,
107107
);
108108
runOnlyForDeploymentPostprocessing = 0;
109109
};
110110
/* End PBXFrameworksBuildPhase section */
111111

112112
/* Begin PBXGroup section */
113+
224712E10B6605416B0937C0 /* Pods */ = {
114+
isa = PBXGroup;
115+
children = (
116+
744086562EDCD1381D9EDE4E /* Pods-Runner.debug.xcconfig */,
117+
D134F95F7D3E78CF95754E69 /* Pods-Runner.release.xcconfig */,
118+
CC7975920D9F98F8D5464A5D /* Pods-Runner.profile.xcconfig */,
119+
93D3EFDC14627833E7B468BE /* Pods-RunnerTests.debug.xcconfig */,
120+
4C6A8B679BEF4A510B37469B /* Pods-RunnerTests.release.xcconfig */,
121+
A4BAFE7543A8448A363D4CD4 /* Pods-RunnerTests.profile.xcconfig */,
122+
);
123+
name = Pods;
124+
path = Pods;
125+
sourceTree = "<group>";
126+
};
113127
331C80D6294CF71000263BE5 /* RunnerTests */ = {
114128
isa = PBXGroup;
115129
children = (
@@ -137,7 +151,7 @@
137151
331C80D6294CF71000263BE5 /* RunnerTests */,
138152
33CC10EE2044A3C60003C045 /* Products */,
139153
D73912EC22F37F3D000D13A0 /* Frameworks */,
140-
E8BE1346EDE02A76DB00B1F6 /* Pods */,
154+
224712E10B6605416B0937C0 /* Pods */,
141155
);
142156
sourceTree = "<group>";
143157
};
@@ -188,34 +202,20 @@
188202
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
189203
isa = PBXGroup;
190204
children = (
191-
D8028E4024CC152E9494AD52 /* Pods_Runner.framework */,
192-
37D1A7A1B1DF20E4946F7EE7 /* Pods_RunnerTests.framework */,
205+
FAE39E0772F19B8E21506327 /* Pods_Runner.framework */,
206+
BD697A023332DDE3CA43AA09 /* Pods_RunnerTests.framework */,
193207
);
194208
name = Frameworks;
195209
sourceTree = "<group>";
196210
};
197-
E8BE1346EDE02A76DB00B1F6 /* Pods */ = {
198-
isa = PBXGroup;
199-
children = (
200-
56EAC3B83F22717B6A8AD5ED /* Pods-Runner.debug.xcconfig */,
201-
1E0562F3F238083D875A013B /* Pods-Runner.release.xcconfig */,
202-
00953292D3CAEBAD344DE8D1 /* Pods-Runner.profile.xcconfig */,
203-
9E3D485AA156E31CB583861D /* Pods-RunnerTests.debug.xcconfig */,
204-
7EF8CF5E83E7C0F416DA751E /* Pods-RunnerTests.release.xcconfig */,
205-
23F67D5F6EB32828A6FB8A89 /* Pods-RunnerTests.profile.xcconfig */,
206-
);
207-
name = Pods;
208-
path = Pods;
209-
sourceTree = "<group>";
210-
};
211211
/* End PBXGroup section */
212212

213213
/* Begin PBXNativeTarget section */
214214
331C80D4294CF70F00263BE5 /* RunnerTests */ = {
215215
isa = PBXNativeTarget;
216216
buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
217217
buildPhases = (
218-
B0504DC2651C7A3918D7A707 /* [CP] Check Pods Manifest.lock */,
218+
1A3629794040C6C9B1130F43 /* [CP] Check Pods Manifest.lock */,
219219
331C80D1294CF70F00263BE5 /* Sources */,
220220
331C80D2294CF70F00263BE5 /* Frameworks */,
221221
331C80D3294CF70F00263BE5 /* Resources */,
@@ -234,13 +234,13 @@
234234
isa = PBXNativeTarget;
235235
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
236236
buildPhases = (
237-
FB8A2CBD1C3328EE0D2F8CCC /* [CP] Check Pods Manifest.lock */,
237+
6163615AE6F29DED3B8F08B5 /* [CP] Check Pods Manifest.lock */,
238238
33CC10E92044A3C60003C045 /* Sources */,
239239
33CC10EA2044A3C60003C045 /* Frameworks */,
240240
33CC10EB2044A3C60003C045 /* Resources */,
241241
33CC110E2044A8840003C045 /* Bundle Framework */,
242242
3399D490228B24CF009A79C7 /* ShellScript */,
243-
89D93264B6A9756910DD9B2B /* [CP] Embed Pods Frameworks */,
243+
4EEF651504F28267374266AC /* [CP] Embed Pods Frameworks */,
244244
);
245245
buildRules = (
246246
);
@@ -323,6 +323,28 @@
323323
/* End PBXResourcesBuildPhase section */
324324

325325
/* Begin PBXShellScriptBuildPhase section */
326+
1A3629794040C6C9B1130F43 /* [CP] Check Pods Manifest.lock */ = {
327+
isa = PBXShellScriptBuildPhase;
328+
buildActionMask = 2147483647;
329+
files = (
330+
);
331+
inputFileListPaths = (
332+
);
333+
inputPaths = (
334+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
335+
"${PODS_ROOT}/Manifest.lock",
336+
);
337+
name = "[CP] Check Pods Manifest.lock";
338+
outputFileListPaths = (
339+
);
340+
outputPaths = (
341+
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
342+
);
343+
runOnlyForDeploymentPostprocessing = 0;
344+
shellPath = /bin/sh;
345+
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";
346+
showEnvVarsInLog = 0;
347+
};
326348
3399D490228B24CF009A79C7 /* ShellScript */ = {
327349
isa = PBXShellScriptBuildPhase;
328350
alwaysOutOfDate = 1;
@@ -361,7 +383,7 @@
361383
shellPath = /bin/sh;
362384
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
363385
};
364-
89D93264B6A9756910DD9B2B /* [CP] Embed Pods Frameworks */ = {
386+
4EEF651504F28267374266AC /* [CP] Embed Pods Frameworks */ = {
365387
isa = PBXShellScriptBuildPhase;
366388
buildActionMask = 2147483647;
367389
files = (
@@ -378,29 +400,7 @@
378400
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
379401
showEnvVarsInLog = 0;
380402
};
381-
B0504DC2651C7A3918D7A707 /* [CP] Check Pods Manifest.lock */ = {
382-
isa = PBXShellScriptBuildPhase;
383-
buildActionMask = 2147483647;
384-
files = (
385-
);
386-
inputFileListPaths = (
387-
);
388-
inputPaths = (
389-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
390-
"${PODS_ROOT}/Manifest.lock",
391-
);
392-
name = "[CP] Check Pods Manifest.lock";
393-
outputFileListPaths = (
394-
);
395-
outputPaths = (
396-
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
397-
);
398-
runOnlyForDeploymentPostprocessing = 0;
399-
shellPath = /bin/sh;
400-
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";
401-
showEnvVarsInLog = 0;
402-
};
403-
FB8A2CBD1C3328EE0D2F8CCC /* [CP] Check Pods Manifest.lock */ = {
403+
6163615AE6F29DED3B8F08B5 /* [CP] Check Pods Manifest.lock */ = {
404404
isa = PBXShellScriptBuildPhase;
405405
buildActionMask = 2147483647;
406406
files = (
@@ -473,7 +473,7 @@
473473
/* Begin XCBuildConfiguration section */
474474
331C80DB294CF71000263BE5 /* Debug */ = {
475475
isa = XCBuildConfiguration;
476-
baseConfigurationReference = 9E3D485AA156E31CB583861D /* Pods-RunnerTests.debug.xcconfig */;
476+
baseConfigurationReference = 93D3EFDC14627833E7B468BE /* Pods-RunnerTests.debug.xcconfig */;
477477
buildSettings = {
478478
BUNDLE_LOADER = "$(TEST_HOST)";
479479
CURRENT_PROJECT_VERSION = 1;
@@ -488,7 +488,7 @@
488488
};
489489
331C80DC294CF71000263BE5 /* Release */ = {
490490
isa = XCBuildConfiguration;
491-
baseConfigurationReference = 7EF8CF5E83E7C0F416DA751E /* Pods-RunnerTests.release.xcconfig */;
491+
baseConfigurationReference = 4C6A8B679BEF4A510B37469B /* Pods-RunnerTests.release.xcconfig */;
492492
buildSettings = {
493493
BUNDLE_LOADER = "$(TEST_HOST)";
494494
CURRENT_PROJECT_VERSION = 1;
@@ -503,7 +503,7 @@
503503
};
504504
331C80DD294CF71000263BE5 /* Profile */ = {
505505
isa = XCBuildConfiguration;
506-
baseConfigurationReference = 23F67D5F6EB32828A6FB8A89 /* Pods-RunnerTests.profile.xcconfig */;
506+
baseConfigurationReference = A4BAFE7543A8448A363D4CD4 /* Pods-RunnerTests.profile.xcconfig */;
507507
buildSettings = {
508508
BUNDLE_LOADER = "$(TEST_HOST)";
509509
CURRENT_PROJECT_VERSION = 1;

0 commit comments

Comments
 (0)