diff options
author | dianlujitao <dianlujitao@lineageos.org> | 2019-09-16 17:40:51 +0800 |
---|---|---|
committer | Davide Garberi <dade.garberi@gmail.com> | 2019-11-05 22:19:31 +0100 |
commit | fd6a2c08d6cc97ec3fcc8374fa3d4b3b6b471b94 (patch) | |
tree | a63f22a1fc67a4d172013b35d588a235843a5a55 /ims | |
parent | 45583cdba8b84f9a64b18ecace6ae3855176f245 (diff) |
msm8996-common: Create system copy of ims-ext-common and add to classpath
* Our ims.apk doesn't load ims-ext-common.jar, and it's moved to /product
on 10 where PRODUCT_BOOT_JARS doesn't work.
* Create a system copy of the jar and add it to boot classpath to make
it loadable from the apk without extra work,
Change-Id: Ia530a530bd4469e12500410fc5e8ba393de60b18
Diffstat (limited to 'ims')
-rw-r--r-- | ims/Android.bp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ims/Android.bp b/ims/Android.bp new file mode 100644 index 0000000..7d97b3c --- /dev/null +++ b/ims/Android.bp @@ -0,0 +1,7 @@ +java_library { + name: "ims-ext-common_system", + installable: true, + static_libs: [ + "ims-ext-common", + ], +} |