Android External Java Jars
satya - Saturday, May 21, 2011 12:20:39 PM
android and external java jars
android and external java jars
satya - Saturday, May 21, 2011 12:23:46 PM
Android SDK is a subset of the Java SDK and may not have all javax.* in it
Android SDK is a subset of the Java SDK and may not have all javax.* in it
satya - Saturday, May 21, 2011 12:32:35 PM
Read this on sqldroid project see if it offers any insight
satya - Saturday, May 21, 2011 12:36:37 PM
here is the java.sql package api from android sdk
here is the java.sql package api from android sdk
The information here seem to sugges that use the native sqlite using specific apis and the JDBC classes are only interfaces looking for a jdbc driver if one is available
satya - Saturday, May 21, 2011 12:37:17 PM
android jdbc driver
android jdbc driver
satya - Saturday, May 21, 2011 12:45:27 PM
jdbc driver
jdbc driver
Search Google for: jdbc driver
Search Android Developers Group for: jdbc driver
Search Android Beginers Group for: jdbc driver
satya - Saturday, May 21, 2011 12:47:23 PM
Here is a lengthy discussion on this topic at android developers group
Here is a lengthy discussion on this topic at android developers group
satya - Saturday, May 21, 2011 12:59:02 PM
Summary
It is perfectly alright to ship a jdbc driver with your application. But don't use the jdbc driver for sqllite that is in Android as it is not supported.
This may not be that significant for built-in sqllite. But if you want to connect to external cloud based databases this becomes very important I take.
satya - Saturday, May 21, 2011 1:01:42 PM
import external java jars into android
import external java jars into android
satya - Saturday, May 21, 2011 1:06:26 PM
aapt jar files dalvik dex
aapt jar files dalvik dex
satya - Saturday, May 21, 2011 1:11:54 PM
Here is how Felix Java Jar imported into Android
satya - Saturday, May 21, 2011 1:14:25 PM
android aapt tool documentation
android aapt tool documentation
satya - Saturday, May 21, 2011 1:15:22 PM
external java compiler jar files are indeed a fair game
external java compiler jar files are indeed a fair game
See this link to see the build process in android that clearly allows external jar files.