I am writing a plugin to use the native android SDK of filepicker https://github.com/Ink/filepicker-android.
On maven central, they only provide an .aar file (http://search.maven.org/#artifactdetails%7Cio.filepicker%7Cfilepicker-android%7C3.8.13%7Caar) and not a .jar.
If I add this line in my config.xml
<source-file src="src/android/filepicker-android-3.8.13.aar" target-dir="libs/" />
the file is copy in libs but not included in the class path during the build via cordova build
, so the build failed.
what is the best solution to include a third party library with aar files?
Thank you for your help