Files
oxmc7769 795dafc62e Android.bp: add preprocessed: true to all presigned APKs
Presigned APKs with targetSdkVersion >= 30 must set preprocessed: true
to prevent the build system from re-processing them and wrecking their
v2 signature.
2026-06-15 21:54:31 +00:00

35 lines
877 B
Plaintext

prebuilt_etc {
name: "privapp-permissions-com.android.vending.xml",
src: "privapp-permissions-com.android.vending.xml",
sub_dir: "permissions",
product_specific: true,
}
prebuilt_etc {
name: "default-permissions-com.android.vending.xml",
src: "default-permissions-com.android.vending.xml",
sub_dir: "default-permissions",
product_specific: true,
}
android_app_import {
name: "FakeStore",
apk: "FakeStore.apk",
presigned: true,
preprocessed: true,
skip_preprocessed_apk_checks: true,
privileged: true,
dex_preopt: {
enabled: false,
},
product_specific: true,
optional_uses_libs: [
"androidx.window.extensions",
"androidx.window.sidecar",
],
required: [
"privapp-permissions-com.android.vending.xml",
"default-permissions-com.android.vending.xml",
],
}