How to make GoogleSignInSDK embeddedframework.zip files?

Hello.

How to make GoogleSignInSDK?

GoogleSignIn.embeddedframework.zip
GoogleSignInDependencies.embeddedframework.zip

Two files very old…
When uploading an ipa to Apple, the upload fails because there is a UIWebView.
Plese help me.

Have a nice day.

Hmm, update to the latest version of the Google Sign-In SDK for iOS. This version should not include UIWebView and should be compatible with Apple’s requirements and remove all references to UIWebView from your project.

Ensure that you have added the following to your app’s info.plist file:

<key>LSApplicationQueriesSchemes</key>
<array>
  <string>googlechrome</string>
  <string>https</string>
  <string>http</string>
</array>

Finally test your app thoroughly to ensure that there are no issues related to UIWebView or Google Sign-In.

Let me know how it goes! :slight_smile: