Perfect solution to Android JNI project will delete other so files problem _android

Source: Internet
Author: User

In the development of Android project, the project uses to JNI development, use C + + to write own so library, debug and run all normal, android.mk file code is as follows:

Local_path: = $ (call My-dir)

include $ (clear_vars)
local_module:=observer
local_src_files:=observer.c
local_c_includes:= $ (local_path)/include
Local_ldlibs + +-l$ (sysroot)/usr/lib-llog
include $ (build_shared_library)

If we need to introduce other third-party so libraries to Libs/armeabi, we will find that the third party so library that just joined is deleted when the project is compiled and run.

In this case, you only need to adjust as follows:

1, in Jni new directory "prebuilt" (of course, other names can also be)

2, modify the Android.mk file, add our third party so library, after I android.mk add the following content:

Local_path: = $ (call My-dir)

include $ (clear_vars)
local_module: = tpnssecurity
Local_src_files: = Prebuilt/libtpnssecurity.so
include $ (prebuilt_shared_library)

include $ (clear_vars)
local_module: = Tpnswatchdog
local_src_files: = prebuilt/libtpnswatchdog.so
include $ (prebuilt_shared_library)

Include $ (clear_vars)
local_module:=observer
local_src_files:=observer.c
local_c_includes:= $ ( Local_path)/include
local_ldlibs + +-l$ (sysroot)/usr/lib-llog
include $ (build_shared_library)

The above perfect solution to the Android JNI project will delete other so files is small series to share all the content, hope to give you a reference, but also hope that we support the cloud habitat community.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.