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.
Add it with LOCAL_STATIC_JAVA_LIBRARIES & LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES flag.
LOCAL_STATIC_JAVA_LIBRARIES
LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES
and put LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES between include $(BUILD_PACKAGE) & include $(BUILD_MULTI_PREBUILT).
$(BUILD_PACKAGE)
$(BUILD_MULTI_PREBUILT)
It will OK. thanks for the URL a2ronus provided.