Visual Studio Tools For Apache Cordova Add A Jar From 3party
I'm using Visual Studio Tools for Apache Cordova to develop hybird app,mainly Jquery mobile. And now I'd like to consume a thrid party jar file. Is it possible Visual Studio Tool
Solution 1:
I've seen devs use the lib
folder, in the built application, as a destination for .jar files. This post looks helpful: How to include jar files in phonegap android application?
Quoting the answer:
<source-file src="libs/mylib.jar" target-dir="libs" />
"libs" is the default folder for storing .jar files so your lib will be linked.
Take a look at an existing plugin using an external lib.
An example (https://github.com/Pushwoosh/pushwoosh-phonegap-3.0-plugin)
Post a Comment for "Visual Studio Tools For Apache Cordova Add A Jar From 3party"