On Thu, Apr 7, 2011 at 6:23 AM, skera <[email protected]> wrote: > Hi! > > For developing in Android, I'dont use Eclipse + ADT, just > console(batch files) + ANT to compile my projects, because I've a > quite slow PC, and it's faster for me to do everything in command > line. > > My question is: How can I add JAR files to my project (for example, I > want to use the maps.jar to my map activity). I have to add it to the > build.xml, or set it in build.properties, or where? :) Thanks for your > answers!
You don't use the maps.jar for your MapActivity: http://code.google.com/android/add-ons/google-apis/maps-overview.html Beyond that, though, you copy the JAR into your project's libs/ directory, and everything else is taken care of for you. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

