30

I am getting this error after installing Google Maps SDK from CocoaPods.

CoreData: annotation:  Failed to load optimized model at path '/Users/nabeel/Library/Developer/CoreSimulator/Devices/96078737-8063-4BC1-97DB-7FECEC6835D9/data/Containers/Bundle/Application/972CD686-82DD-4357-9CDD-65A735D82190/My-APP-Beta.app/GoogleMaps.bundle/GMSCacheStorage.momd/StorageWithTileVersionID.omo'
CoreData: annotation:  Failed to load optimized model at path '/Users/nabeel/Library/Developer/CoreSimulator/Devices/96078737-8063-4BC1-97DB-7FECEC6835D9/data/Containers/Bundle/Application/972CD686-82DD-4357-9CDD-65A735D82190/My-APP-Beta.app/GoogleMaps.bundle/GMSCacheStorage.momd/StorageWithTileVersionID.omo'
CoreData: annotation:  Failed to load optimized model at path '/Users/nabeel/Library/Developer/CoreSimulator/Devices/96078737-8063-4BC1-97DB-7FECEC6835D9/data/Containers/Bundle/Application/972CD686-82DD-4357-9CDD-65A735D82190/My-APP-Beta.app/GoogleMaps.bundle/GMSCacheStorage.momd/StorageWithTileVersionID.omo'

I have tried pod update and pod install again but same issue.

Arasuvel
  • 2,888
  • 1
  • 25
  • 39
Nabeel
  • 632
  • 1
  • 7
  • 21

6 Answers6

41

If you have already double-checked the basic setup for the "google maps ios-sdk" with an APIkey for your app's bundle identifier here and still have the same problem then probably you have not enabled the google maps API. Go to your app-project's dashboard on https://console.developers.google.com and click the "ENABLE APIS AND SERVICES". There, under the MAPS section select "the Google maps sdk for ios" and enable it.

C. Kontos
  • 959
  • 9
  • 18
  • This worked for me. I was using Api key without iOS App restriction and Google map ios sdk enabled. So I created a new key with iOS app restriction and provided the bundle id and also enabled Google map ios sdk. – Nabeel Nov 19 '17 at 07:56
  • 1
    But Run into another issue the map loads in parent view but does not loads in any subview. – Nabeel Nov 19 '17 at 07:58
  • Oh that is another question which you should create and show some code in order to be answered. Maybe you can share a link here for it when you do that? – C. Kontos Nov 20 '17 at 13:09
  • 4
    Important note! : If the map appears as normal but the message "CoreData: annotation: Failed to load optimized model at path ... /GMSCacheStorage.momd/StorageWithTileVersionID.omo' " is still showing then this is an issue from the google maps ios sdk.. Here is the issue-tracker for it: https://issuetracker.google.com/issues/64504919 – C. Kontos Nov 30 '17 at 13:28
  • I've done all that and the map still does not load. It does not work for me – Alberto Mier Mar 13 '18 at 06:43
8
  1. Selecte [APP-NAME].app and show it in finder and show package contents.
  2. You will see GoogleMaps.bundle, right click and show it's package contents.
  3. Enter GMSCacheStorage.momd folder.
  4. Delete StorageWithTileProto.omo.

After that those errors disappeared.

  • 2
    I tried with delete StorageWithTileProto.omo but it's generating agin when i am running my app agin. And error log showing again. – Bhavsang Jam Feb 20 '19 at 07:34
6

Expand GoogleMaps.bundle from Project Navigator(in Xcode) then expand GMSCacheStorage.momd folder. Now delete StorageWithTileProto.omo file from this folder and run project again.

Suhaib Janjua
  • 3,273
  • 13
  • 52
  • 68
Som Parkash
  • 224
  • 3
  • 9
3

I just run into another issue with same warnings. The map was working fine but there were few warnings in the console. I googled around and found this solution.

  1. Go to products group in your project navigator and select your [APP-NAME].app and then show in finder and choose show package contents

  2. Now you will see your [APP-NAME].momd folder. Open it there you will see your [APP-NAME].omo

  3. Move [APP-NAME].omo to Trash and run the project again

  4. Log message should not be displaying in console now.

Note: Don't delete any .mom files

Nabeel
  • 632
  • 1
  • 7
  • 21
1

Take a look at this link about the errors which sometimes result in crashes in GoogleMaps SKD 2.4 and 2.5 including in my case (2.5):

https://issuetracker.google.com/issues/64504919

Also try:

Command + Shift + B

I know, it might sound silly but I spent HOURS and this was what finally solved my issue! A CLEAN BUILD After all!

Some people experiencing the same issue suggested downgrading the SDK to 2.3, I did that and results were the same and also my code was crashing all the time so I had to update back to 2.5

Ramin
  • 289
  • 4
  • 11
-3

I had this problem. I just forgot to add view = mapView. add this to your viewDidLoad :

override func viewDidLoad(){
super.viewDidLoad()
view = mapView
mapView?.delegate = self
let camera = GMSCameraPosition.camera(withLatitude : 0.0 , longitude : 0.0, zoom :6.0)
mapView = GMSMapView.map(withFrame : CGRect.zero , camera : camera)

}