Increase application size after using Google Maps SDK for iOS

I tried using the Google Maps SDK for iOS, and it seems to add a significant size (96 MB) to our application, which is currently only 26 MB (using Apple cards).

I would appreciate any feedback / experience on how to solve them.

+4
source share
2 answers

Unable to resolve this issue. This is one of the disadvantages of working with Google Maps SDK and Apple.

The Google Maps SDK is its own static structure, which is not preloaded on the device. Apple cards are embedded in the OS as a dynamic structure.

Another possibility: This will sound silly, but make sure you did not copy the documentation or example code when loading the Google Maps SDK into your application.

+3
source

Now with the Google Maps SDK for iOS version: 1.3.1.3848, the SDK size is ONLY 15 MB, and the previous version 1.3.0 is 157 MB. That is strange. I even downloaded it 3 times to make sure this is the full file size. This is a big reduction in size from 157 MB to 15 MB, and there is nothing to note about the release.

0
source

All Articles