How can I use jar libraries in Android compiled with packages that Android doesn't have -
i need import couple of jars compiled under full implementation of java. know android doesn't use packages java has offer. question is: possible import them without creating errors? there tool can convert jars android jars? if so, can examples provided. appreciated.
is possible import them without creating errors?
if jars refer classes android not have, no.
is there tool can convert jars android jars?
there no such thing "android jars".
if have source code jars in question, between modifying source code , modifying copies of missing classes apache harmony, may able stuff working. however, cannot put java.*
or javax.*
classes in project -- have refactor them new packages. also, depending on classes missing, may take thousands of developer-months accomplish (e.g., reimplementing swing using 2d canvas apis).
Comments
Post a Comment