@@ -157,12 +157,10 @@ Future<void> main() async {
157
157
String content = await pubspec.readAsString ();
158
158
content = content.replaceFirst (
159
159
'\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.
162
161
'''
163
162
dependencies:
164
163
url_launcher: 6.0.20
165
- google_sign_in: 5.2.4
166
164
android_alarm_manager: 0.4.5+11
167
165
$dartPluginName :
168
166
path: ../$dartPluginName
@@ -196,7 +194,6 @@ dependencies:
196
194
if (! podfileLockOutput.contains (':path: Flutter' )
197
195
|| ! podfileLockOutput.contains (':path: Flutter/FlutterPluginRegistrant' )
198
196
|| ! podfileLockOutput.contains (':path: ".symlinks/plugins/url_launcher_ios/ios"' )
199
- || ! podfileLockOutput.contains (':path: ".symlinks/plugins/google_sign_in/ios"' )
200
197
|| podfileLockOutput.contains ('android_alarm_manager' )
201
198
|| podfileLockOutput.contains (dartPluginName)) {
202
199
print (podfileLockOutput);
@@ -206,9 +203,6 @@ dependencies:
206
203
checkFileExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'url_launcher_ios.framework' , 'url_launcher_ios' ));
207
204
checkFileExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'Flutter.framework' , 'Flutter' ));
208
205
209
- // Static, no embedded framework.
210
- checkDirectoryNotExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'google_sign_in.framework' ));
211
-
212
206
// Android-only, no embedded framework.
213
207
checkDirectoryNotExists (path.join (ephemeralIOSHostApp.path, 'Frameworks' , 'android_alarm_manager.framework' ));
214
208
278
272
if (! hostPodfileLockOutput.contains (':path: "../hello/.ios/Flutter"' )
279
273
|| ! hostPodfileLockOutput.contains (':path: "../hello/.ios/Flutter/FlutterPluginRegistrant"' )
280
274
|| ! hostPodfileLockOutput.contains (':path: "../hello/.ios/.symlinks/plugins/url_launcher_ios/ios"' )
281
- || ! hostPodfileLockOutput.contains (':path: "../hello/.ios/.symlinks/plugins/google_sign_in/ios"' )
282
275
|| hostPodfileLockOutput.contains ('android_alarm_manager' )
283
276
|| hostPodfileLockOutput.contains (dartPluginName)) {
284
277
print (hostPodfileLockOutput);
0 commit comments