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.
LOCAL_STATIC_JAVA_LIBRARIES := \ other libs \ your_jar include $(CLEAR_VARS) LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := your_jar:jar_path/jar_file.jar include $(BUILD_MULTI_PREBUILT)