How to include jar files in phonegap android application?
问题 I am using a third party jar which has java class files and also .so files in my armeabi folder and i want to use the functions of the jar into my phonegap application which i am running on android platform. I tried with including the jar in plugin.xml with the following command : <source-file src="src/android/xxx.jar" target-dir="libs" framework="true" /> <source-file src="src/android/MyPlugin.java" target-dir="src/com/mypackage" /> this doesn't work. can anybody help and what's the proper