Skip to content

Commit b3d1f71

Browse files
authored
Update module_test_ios google_sign_in version (#101729)
1 parent ea19a77 commit b3d1f71

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dev/devicelab/bin/tasks/module_test_ios.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ Future<void> main() async {
188188
// and one that does not support iOS.
189189
'''
190190
dependencies:
191-
device_info: 2.0.3
192-
google_sign_in: 4.5.1
191+
url_launcher: 6.0.20
192+
google_sign_in: 5.2.4
193193
android_alarm_manager: 0.4.5+11
194194
$dartPluginName:
195195
path: ../$dartPluginName
@@ -223,15 +223,15 @@ dependencies:
223223
final String podfileLockOutput = podfileLockFile.readAsStringSync();
224224
if (!podfileLockOutput.contains(':path: Flutter')
225225
|| !podfileLockOutput.contains(':path: Flutter/FlutterPluginRegistrant')
226-
|| !podfileLockOutput.contains(':path: ".symlinks/plugins/device_info/ios"')
226+
|| !podfileLockOutput.contains(':path: ".symlinks/plugins/url_launcher_ios/ios"')
227227
|| !podfileLockOutput.contains(':path: ".symlinks/plugins/google_sign_in/ios"')
228228
|| podfileLockOutput.contains('android_alarm_manager')
229229
|| podfileLockOutput.contains(dartPluginName)) {
230230
print(podfileLockOutput);
231231
return TaskResult.failure('Building ephemeral host app Podfile.lock does not contain expected pods');
232232
}
233233

234-
checkFileExists(path.join(ephemeralIOSHostApp.path, 'Frameworks', 'device_info.framework', 'device_info'));
234+
checkFileExists(path.join(ephemeralIOSHostApp.path, 'Frameworks', 'url_launcher_ios.framework', 'url_launcher_ios'));
235235
checkFileExists(path.join(ephemeralIOSHostApp.path, 'Frameworks', 'Flutter.framework', 'Flutter'));
236236

237237
// Static, no embedded framework.
@@ -282,7 +282,7 @@ dependencies:
282282
final String hostPodfileLockOutput = hostPodfileLockFile.readAsStringSync();
283283
if (!hostPodfileLockOutput.contains(':path: "../hello/.ios/Flutter/engine"')
284284
|| !hostPodfileLockOutput.contains(':path: "../hello/.ios/Flutter/FlutterPluginRegistrant"')
285-
|| !hostPodfileLockOutput.contains(':path: "../hello/.ios/.symlinks/plugins/device_info/ios"')
285+
|| !hostPodfileLockOutput.contains(':path: "../hello/.ios/.symlinks/plugins/url_launcher_ios/ios"')
286286
|| !hostPodfileLockOutput.contains(':path: "../hello/.ios/.symlinks/plugins/google_sign_in/ios"')
287287
|| hostPodfileLockOutput.contains('android_alarm_manager')
288288
|| hostPodfileLockOutput.contains(dartPluginName)) {

0 commit comments

Comments
 (0)