@@ -157,12 +157,10 @@ Future<void> main() async {
157157      String  content =  await  pubspec.readAsString ();
158158      content =  content.replaceFirst (
159159        '\n dependencies:\n ' ,
160-         // One dynamic framework, one static framework, one Dart-only, 
161-         // and one that does not support iOS. 
160+         // One framework, one Dart-only, and one that does not support iOS. 
162161        ''' 
163162dependencies: 
164163  url_launcher: 6.0.20 
165-   google_sign_in: 5.2.4 
166164  android_alarm_manager: 0.4.5+11 
167165  $dartPluginName : 
168166    path: ../$dartPluginName  
@@ -196,7 +194,6 @@ dependencies:
196194      if  (! podfileLockOutput.contains (':path: Flutter' )
197195        ||  ! podfileLockOutput.contains (':path: Flutter/FlutterPluginRegistrant' )
198196        ||  ! podfileLockOutput.contains (':path: ".symlinks/plugins/url_launcher_ios/ios"' )
199-         ||  ! podfileLockOutput.contains (':path: ".symlinks/plugins/google_sign_in/ios"' )
200197        ||  podfileLockOutput.contains ('android_alarm_manager' )
201198        ||  podfileLockOutput.contains (dartPluginName)) {
202199        print (podfileLockOutput);
@@ -206,9 +203,6 @@ dependencies:
206203      checkFileExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'url_launcher_ios.framework' , 'url_launcher_ios' ));
207204      checkFileExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'Flutter.framework' , 'Flutter' ));
208205
209-       // Static, no embedded framework. 
210-       checkDirectoryNotExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'google_sign_in.framework' ));
211- 
212206      // Android-only, no embedded framework. 
213207      checkDirectoryNotExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'android_alarm_manager.framework' ));
214208
278272        if  (! hostPodfileLockOutput.contains (':path: "../hello/.ios/Flutter"' )
279273            ||  ! hostPodfileLockOutput.contains (':path: "../hello/.ios/Flutter/FlutterPluginRegistrant"' )
280274            ||  ! hostPodfileLockOutput.contains (':path: "../hello/.ios/.symlinks/plugins/url_launcher_ios/ios"' )
281-             ||  ! hostPodfileLockOutput.contains (':path: "../hello/.ios/.symlinks/plugins/google_sign_in/ios"' )
282275            ||  hostPodfileLockOutput.contains ('android_alarm_manager' )
283276            ||  hostPodfileLockOutput.contains (dartPluginName)) {
284277          print (hostPodfileLockOutput);
0 commit comments