当前位置: 代码迷 >> Android >> android编译时平添库第三方库文件
  详细解决方案

android编译时平添库第三方库文件

热度:93   发布时间:2016-05-01 16:22:18.0
android编译时添加库第三方库文件
android编译时添加库第三方库文件:
android\customization\custom_normal\vendor\third-party\libs\Android_cust.mk 中
----------------------------------------------------
include $(CLEAR_VARS)
LOCAL_PREBUILT_LIBS += libhello-jni.so
include $(BUILD_MULTI_PREBUILT)
-----------------------------------------------------
在上述mk文件中添加上述代码  可以在编译时将
android\customization\custom_normal\vendor\third-party\libs\libhello-jni.so 库文件添加到android系统库目录中
  相关解决方案