Reputation: 91
This is my podfile for my iphone app. platform :ios, ‘9.0’ use_frameworks!
target ‘NearBy Places’ do
pod 'Alamofire', '~> 4.0'
pod 'SwiftyJSON'
pod 'Toast-Swift', '~> 2.0.0'
pod 'MBProgressHUD'
pod 'GoogleMaps'
pod 'GooglePlaces'
end
I accidentally deleted some files of framework. Now even when i run pod install command, it is still not able to get those files back and is showing me missing googlemapscore framework missing linker error.
Upvotes: 1
Views: 499
Reputation: 135
I had the same problem after deleting GoogleMapsCore
by mistake. Here's what worked for me:
rn_maps_path = '../node_modules/react-native-maps'
pod 'react-native-google-maps', :path => rn_maps_path
pod 'GoogleMaps'
pod 'Google-Maps-iOS-Utils'
Upvotes: 0
Reputation: 91
Delete the pod, run pod update and then add your pod and call pod update again.
Upvotes: 1