AIR 3 Native Extensions for Android – Can I/How to include 3rd party libraries?

You have to combine all your jars into one. Something like http://code.google.com/p/jarjar/ or your own Ant script will help. Edited to add example: Suppose your main extension jar file is extension.jar and you are using code in external.jar. Then you can put the classes from external.jar into extension.jar using the Java jar tool: jar -xf … Read more