diff options
author | 2024-10-01 15:46:39 -0700 | |
---|---|---|
committer | 2024-10-01 16:14:03 -0700 | |
commit | b0f14d8048a18c905cadf08134973e806fdc9adf (patch) | |
tree | 5256c0b0199e6dee68898633ee1b58cc23a124fe /WifiDialog | |
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
Diffstat (limited to 'WifiDialog')
-rw-r--r-- | WifiDialog/Android.bp | 3 |
1 files changed, 2 insertions, 1 deletions
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", } |