views:

318

answers:

2

hi all,

i am working on mapactivity.

map.jar file in sdk\add-ons path.

how to add it in my project??

thanks..

+4  A: 

As far as i remember if you choose the target to be the one with Google API then it should be included in your project.

Raja
A: 

It depends how you build your project. Basically you have to add the jar to the classpath for build time. You can do that by putting the jar in the lib folder in the project, or by linking to it directly in Eclipse, or by adding the dependency to it if you are using the maven android plugin.

For deployment/packaging you dont have to do anything since the jar is part of the provided platform and assumed to be there are runtime. It will NOT end up in your APK.

Manfred Moser