ℹ i installed the CocoaPod then i create the Podfile and write the code for the GoogleMaps
e.g. Run sudo gem install cocoapods
after that create the podfile and write the codes
Run pod install
ℹ after that i got an error The dependency GoogleMaps is not used in any concrete target.
i update the cocoapods after searching on the internet about this error
Please fill our the entire issue template, including your podfile.
Hello, I have the same issue. can you let me know the solution?
Thanks
You should use
pod init
and use the default template, then run
pod install
.
It seems like things changed in the new version.
Adding a target to my Podfile helped. like this
target 'AppName'
source 'https://github.com/CocoaPods/Specs.git'
pod 'GoogleMaps'
Most helpful comment
You should use
and use the default template, then run
.
It seems like things changed in the new version.