Yes, you can add your own jars. And Android does provide APIs for several Google services.
Ko Ko Naing
Ranch Hand
Joined: Jun 08, 2002
Posts: 3178
posted
0
Anup Francis wrote:Also, Does Android provide out of the box support for google maps and other google api's?
I also believe that Android is supposed to be seamlessly intergated with other Google's services... I once bookmarked this. Hope it is interesting to you as well...
Co-author of SCMAD Exam Guide, Author of JMADPlus SCJP1.2, CCNA, SCWCD1.4, SCBCD1.3, SCMAD1.0, SCJA1.0, SCJP6.0
Mark L. Murphy
Author
Ranch Hand
Joined: Feb 11, 2009
Posts: 131
posted
0
Can we add our own java libraries to be used within Android?
Yes and sort of.
Android supports incorporating third-party JARs into Android apps. However, those JARs might assume they are on JavaSE (or, worse, JavaME) and therefore be missing some important APIs.
Also, you will have some problems if the JAR was compiled using older Java (e.g., 1.4.2) or non-Sun Java (e.g., gcj). If the source is available, I recommend recompiling the code using the same compiler that you would use for your Android app.