diff options
author | 2020-02-24 18:36:46 +0900 | |
---|---|---|
committer | 2020-02-24 21:10:56 +0900 | |
commit | dd719927e90a418335b1a93a451773f8e48f25df (patch) | |
tree | 736c37afa84653cfb6d6cce6542204385f271614 | |
parent | bd42ce1a3af833dac26dba48a096e8a771bf58f9 (diff) |
Mark updatable APEXes
Mark updatable APEXes as updatable: true so that they are opted-out from
optimizations that make sense only for non-updatable modules; such as
symlinking to the libs in the system partition.
Bug: 149805758
Test: m and check that there is no symlink from the APEX to the system
partition.
Change-Id: Idb55300a60a261c7bb6359439ed220ff51fcf06c
-rw-r--r-- | Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index d746ea6af..0171b0d76 100644 --- a/Android.bp +++ b/Android.bp @@ -20,6 +20,7 @@ apex { apex_defaults { name: "com.android.permission-defaults", + updatable: true, key: "com.android.permission.key", certificate: ":com.android.permission.certificate", java_libs: [ |