Rab Ross
Rab Ross

Reputation: 2096

Adding a prebuilt APK that requires shared libraries

The libs are packaged in the apk in the lib directory.

Upvotes: 1

Views: 1413

Answers (1)

Serguei
Serguei

Reputation: 36

Copy your shared libraries to system/lib like:

PRODUCT_COPY_FILES += \
    $(LOCAL_PATH)/libcom_googlecode_android_scripting_Exec.so:system/lib/libcom_googlecode_android_scripting_Exec.so \
    $(LOCAL_PATH)/liborg_connectbot_util_EastAsianWidth.so:system/lib/liborg_connectbot_util_EastAsianWidth.so

Upvotes: 2

Related Questions