Reputation: 61
Quick question regarding Google Maps. I have one fully working Google Maps project and another working project for my main application. I am wondering about combining these. How does one go about doing adding the Google Maps API functionality to the existing Android project.
I have tried researching this online but my search terms seemed to be a bit ambiguous.
Thanks.
Upvotes: 1
Views: 703
Reputation: 3723
If you have the plugin
Go to:
project, properties, android, on the right hand menu choose the google api of your choice
the library will be added to your project.
Remember you must add the appropriate xml resource from your project and the permissions to your manifest etc
Upvotes: 0
Reputation: 11230
Add the Maps API library to your project's Manifest file
<uses-library android:name="com.google.android.maps" />
Obtain the Maps API key, add to your project and also sign the app with the certificate corresponding to the same key http://code.google.com/android/add-ons/google-apis/mapkey.html
Upvotes: 1