Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
There is some interest in using Jackson on Google's Android platform, and it would be good if Jackson did indeed run on it. Based on help from users who have checked it out there are some minor issues with some classes that are part of JDK 1.5 but not Android's core class library.
One example is that javax.xml.datatype.XMLGregorianCalendar" is missing (which is easy enough to resolve, because class reference is not really needed and serialization is done using generic toString() method.
To figure out other possible problems, need to at least check that Jackson compiles using Android compiler+VM or Eclipse with plug-in.
Although code compiles ok, it looks like JsonGenerator.writeValue() will cause problems when running on Eclipse Android emulator plug-in. Haven't yet seen a stack trace or similar to indicate exactly where/what happens.