importing custom SO file to AOSP

别来无恙 提交于 2019-12-04 12:12:21

问题


I've built an AOSP system service following this tutorial: http://www.androidenea.com/2009/12/adding-system-server-to-android.html

Now I want to use a pre-compiled .so file and cannot figure out where to put it so my code will be able to access it.

so, i created a folder at framewaork/base/libs/my_folder/ and put there two files: my_lib.so android.mk

the content of the android.mk is :

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE:= my_lib
LOCAL_MODULE_TAGS := optional

include $(BUILD_SHARED_LIBRARY)

the make ran without errors, but when the code tried to load the library via: System.loadLibrary("my_lib");

i got this error:

06-27 13:58:55.581: E/AndroidRuntime(806): Caused by: java.lang.UnsatisfiedLinkError: Library my_lib not found; tried [/vendor/lib/my_lib.so, /system/lib/my_lib.so]

so i added the so file to out/target/product/generic/system/lib but got the same error.

so where should i place the my_lib.so file ? and is an android.mk needed for it ? maybe i should register it somewhere on the system ?

Thanks in advance!


回答1:


So the answer was quite simple. I really need to copy my lib to the system image, to the system/lib folder, because the make command doesn't copy it from out/target/product/generic/system/lib to system.img

the trick is to add this line

  PRODUCT_COPY_FILES += $(LOCAL_PATH)/my_lib.so:system/lib/my_lib.so

to full.mk file. it's location is: android-source/build/target/product also put the my_lib.so near it (as seen by the path)

if you are planning to run the image on a real device, add this line after the device name definition. f.ex. if you are running on Nexus 4, put it at android-source/device/lge/mako/full_mako.mk



来源:https://stackoverflow.com/questions/17345513/importing-custom-so-file-to-aosp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!