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

Commit 338617d5 authored by Victor Chang's avatar Victor Chang
Browse files

Remove libpac as a JNI library in Android.mk

In fact, libpac is just a normal C++ library, not a JNI library.
Remove it from LOCAL_JNI_SHARED_LIBRARIES. libjni_pacprocessor
is the actual JNI library.

libpac is still being used. libjni_pacprocessor, specified in
frameworks/base/packages/services/PacProcessor/jni/Android.bp,
depends on libpac as shared library.

This change is needed to move libpac into the Runtime APEX.

Bug: 121269980
Test: m droid
Change-Id: I2a985acddbf2083d59fa28cfa76e6e4b80fa5b20
parent e35f7027
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,6 +26,6 @@ LOCAL_PACKAGE_NAME := PacProcessor
LOCAL_PRIVATE_PLATFORM_APIS := true
LOCAL_CERTIFICATE := platform

LOCAL_JNI_SHARED_LIBRARIES := libjni_pacprocessor libpac
LOCAL_JNI_SHARED_LIBRARIES := libjni_pacprocessor

include $(BUILD_PACKAGE)