Adding a external jar reference in Android.mk
- by Karan
I want to add a external third party jar file in the inbuilt android app.
I've added the LOCAL_CLASSPATH variable in Android.mk due to which the compilation goes fine. But during runtime, it is not able to find the class definiation which is in the JAR.
Which is the variable I need to set to add the third party JARs in the .dex/.apk ?
TIA.