Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 888e4ddc authored by Winson Chiu's avatar Winson Chiu
Browse files

Enable use_embedded_native_libs for CtsShimPrivUpgrade

Attempt to work around a compressed JNI library check in the build.

Bug: 278988121

Test: m CtsShimPrivUpgrade and dump with zipinfo

Change-Id: I69449175a1649554dc99128bef535e1ece6884b7
parent 38d07cba
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -43,6 +43,9 @@ android_app {


    compile_multilib: "both",
    compile_multilib: "both",
    jni_libs: ["libshim_jni"],
    jni_libs: ["libshim_jni"],
    // Explicitly uncompress native libs rather than letting the build system doing it and destroy the
    // v2/v3 signature.
    use_embedded_native_libs: true,


    uses_libs: ["android.test.runner"],
    uses_libs: ["android.test.runner"],


@@ -124,6 +127,9 @@ android_app {


    compile_multilib: "both",
    compile_multilib: "both",
    jni_libs: ["libshim_jni"],
    jni_libs: ["libshim_jni"],
    // Explicitly uncompress native libs rather than letting the build system doing it and destroy the
    // v2/v3 signature.
    use_embedded_native_libs: true,


    uses_libs: ["android.test.runner"],
    uses_libs: ["android.test.runner"],
}
}