Other Parts Discussed in Thread: 4460
Hi,
I am working on OMAP 4460 Android ICS,
I am installing a custom application (.apk) on Android, While installing I am copying a shared library to following location.
/data/data/iw.vscan.capture/lib/
I am able to run the application right after installation, it is running fine.After reboot, Library is not there in the above mentioned folder.
This is my jni/Android.mk
----------------------------------
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
TARGET_PLATFORM := android-8
LOCAL_MODULE := libVscanGE
LOCAL_SRC_FILES := camera.c
LOCAL_LDLIBS := -llog
include $(BUILD_SHARED_LIBRARY)
My jni/Application.mk
----------------------------
APP_ABI := armeabi
APP_PLATFORM := android-8
APP_MODULES := libVscanGE
I have flashed the Android Binaries to SD card through fastboot.
With Regards,
Lahir