diff options
| author | 2021-02-16 14:58:27 +0000 | |
|---|---|---|
| committer | 2021-02-17 11:03:15 +0000 | |
| commit | c99ec4a1684e24c5a5efeb87986397a07cc6f1c2 (patch) | |
| tree | 7c49a67e6a776082984ecda14ee9951932f3a849 | |
| parent | 8f2ce99dd73234ebfa17618535373c586a147dbb (diff) | |
Set updateable:false explicitly in apex rules.
Currently, this is the default so this is a no-op,
But the default is changing to true.
Bug: 180375550
Test: Treehugger
Change-Id: I153e6f842e03a732bfa852b830e0f65050e9270f
| -rw-r--r-- | core/tests/overlaytests/remount/test-apps/overlaid_apex/Android.bp | 1 | ||||
| -rw-r--r-- | core/tests/overlaytests/remount/test-apps/overlay_apex/Android.bp | 1 | ||||
| -rw-r--r-- | tests/RollbackTest/Android.bp | 3 |
3 files changed, 5 insertions, 0 deletions
diff --git a/core/tests/overlaytests/remount/test-apps/overlaid_apex/Android.bp b/core/tests/overlaytests/remount/test-apps/overlaid_apex/Android.bp index e6ebd5ea76d8..58fcd64f35a4 100644 --- a/core/tests/overlaytests/remount/test-apps/overlaid_apex/Android.bp +++ b/core/tests/overlaytests/remount/test-apps/overlaid_apex/Android.bp @@ -39,4 +39,5 @@ apex { key: "com.android.overlaytest.overlaid.key", apps: ["OverlayRemountedTest_Target"], installable: false, + updatable: false, } diff --git a/core/tests/overlaytests/remount/test-apps/overlay_apex/Android.bp b/core/tests/overlaytests/remount/test-apps/overlay_apex/Android.bp index 07f27ee55d39..b53395acfe62 100644 --- a/core/tests/overlaytests/remount/test-apps/overlay_apex/Android.bp +++ b/core/tests/overlaytests/remount/test-apps/overlay_apex/Android.bp @@ -39,4 +39,5 @@ apex { key: "com.android.overlaytest.overlay.key", apps: ["OverlayRemountedTest_Overlay"], installable: false, + updatable: false, } diff --git a/tests/RollbackTest/Android.bp b/tests/RollbackTest/Android.bp index 7dd003eb9755..efcd86525c43 100644 --- a/tests/RollbackTest/Android.bp +++ b/tests/RollbackTest/Android.bp @@ -96,6 +96,7 @@ apex { key: "com.android.apex.apkrollback.test.key", apps: ["TestAppAv1"], installable: false, + updatable: false, } apex { @@ -106,6 +107,7 @@ apex { key: "com.android.apex.apkrollback.test.key", apps: ["TestAppAv2"], installable: false, + updatable: false, } apex { @@ -116,4 +118,5 @@ apex { key: "com.android.apex.apkrollback.test.key", apps: ["TestAppACrashingV2"], installable: false, + updatable: false, }
\ No newline at end of file |