In earlier versions of XBinder, it was necessary to use custom build scripts, a special StAX-Over-XmlPull layer, and a tool to repackage our standard runtime. As of XBinder 2.2, this has changed and things are now simpler. If you used XBinder with Android prior to XBinder 2.2, you will need to make a few changes to your code:
Replace uses of javax.xml.namespace.QName with com.objsys.javax.xml.namespace.QName
Replace uses of javax.xml.datatype with com.objsys.javax.xml.datatype
Rather than provind the XBinder generated code with a javax.xml.stream.XMLStreamReader, provide an org.xmlpull.v1.XmlPullParser. The XmlPull API is a standard part of the Android API.
Rather than using xbrt.jar, use xbrt_android.jar. The other JARs that you previously needed are no longer used (j2se_android.jar, soxp.jar, stax-api-1.0.1.jar).
You can now use a standard Android project with the ADT (Android Development Tools) Eclipse plug-in. You do not need to use a customized build. You no longer need to use Jar Jar Links.