@@ -188,8 +188,8 @@ Future<void> main() async {
188
188
// and one that does not support iOS.
189
189
'''
190
190
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
193
193
android_alarm_manager: 0.4.5+11
194
194
$dartPluginName :
195
195
path: ../$dartPluginName
@@ -223,15 +223,15 @@ dependencies:
223
223
final String podfileLockOutput = podfileLockFile.readAsStringSync ();
224
224
if (! podfileLockOutput.contains (':path: Flutter' )
225
225
|| ! podfileLockOutput.contains (':path: Flutter/FlutterPluginRegistrant' )
226
- || ! podfileLockOutput.contains (':path: ".symlinks/plugins/device_info /ios"' )
226
+ || ! podfileLockOutput.contains (':path: ".symlinks/plugins/url_launcher_ios /ios"' )
227
227
|| ! podfileLockOutput.contains (':path: ".symlinks/plugins/google_sign_in/ios"' )
228
228
|| podfileLockOutput.contains ('android_alarm_manager' )
229
229
|| podfileLockOutput.contains (dartPluginName)) {
230
230
print (podfileLockOutput);
231
231
return TaskResult .failure ('Building ephemeral host app Podfile.lock does not contain expected pods' );
232
232
}
233
233
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 ' ));
235
235
checkFileExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'Flutter.framework' , 'Flutter' ));
236
236
237
237
// Static, no embedded framework.
@@ -282,7 +282,7 @@ dependencies:
282
282
final String hostPodfileLockOutput = hostPodfileLockFile.readAsStringSync ();
283
283
if (! hostPodfileLockOutput.contains (':path: "../hello/.ios/Flutter/engine"' )
284
284
|| ! 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"' )
286
286
|| ! hostPodfileLockOutput.contains (':path: "../hello/.ios/.symlinks/plugins/google_sign_in/ios"' )
287
287
|| hostPodfileLockOutput.contains ('android_alarm_manager' )
288
288
|| hostPodfileLockOutput.contains (dartPluginName)) {
0 commit comments