diff options
author | 2024-10-01 15:46:39 -0700 | |
---|---|---|
committer | 2024-10-01 16:14:03 -0700 | |
commit | b0f14d8048a18c905cadf08134973e806fdc9adf (patch) | |
tree | 5256c0b0199e6dee68898633ee1b58cc23a124fe | |
parent | 4e542261ce482f8c4f4dc054550a9a5cdab27332 (diff) |
Mark packages/modules/Wifi apps in updatable apexes with updatable: true
Set updatable: true for apps that are embedded in updatable apexes.
This replaces the top down propagation that was automatically setting
the flag in order to unblock support for incremental Soong analysis.
Bug: 367784740
Test: builds
Flag: EXEMPT refactor
Change-Id: I4075ff6ff48056483cc52f055f13c8c6161e8cb9
-rw-r--r-- | OsuLogin/Android.bp | 3 | ||||
-rw-r--r-- | WifiDialog/Android.bp | 3 | ||||
-rw-r--r-- | service/ServiceWifiResources/Android.bp | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/OsuLogin/Android.bp b/OsuLogin/Android.bp index ff8748c31e..3938680aa6 100644 --- a/OsuLogin/Android.bp +++ b/OsuLogin/Android.bp @@ -18,9 +18,10 @@ android_app { optimize: { shrink_resources: true, }, + updatable: true, } android_app_certificate { name: "com.android.hotspot2.osulogin.certificate", - certificate: "certs/com.android.hotspot2.osulogin" + certificate: "certs/com.android.hotspot2.osulogin", } diff --git a/WifiDialog/Android.bp b/WifiDialog/Android.bp index 75bb3cc2cf..10d2aba473 100644 --- a/WifiDialog/Android.bp +++ b/WifiDialog/Android.bp @@ -38,9 +38,10 @@ android_app { optimize: { shrink_resources: true, }, + updatable: true, } android_app_certificate { name: "com.android.wifi.dialog.certificate", - certificate: "certs/com.android.wifi.dialog" + certificate: "certs/com.android.wifi.dialog", } diff --git a/service/ServiceWifiResources/Android.bp b/service/ServiceWifiResources/Android.bp index 8cff118fc9..07c4e41612 100644 --- a/service/ServiceWifiResources/Android.bp +++ b/service/ServiceWifiResources/Android.bp @@ -35,6 +35,7 @@ android_app { "test_com.android.wifi", ], certificate: ":com.android.wifi.resources.certificate", + updatable: true, } android_app_certificate { |