Files
vendor_partner_gms/apps/FDroid/Android.bp
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

33 lines
678 B
Plaintext

prebuilt_etc {
name: "additional_repos.xml",
src: "additional_repos.xml",
sub_dir: "org.fdroid.fdroid",
product_specific: true,
}
prebuilt_etc {
name: "additional_repos.json",
src: "additional_repos.json",
sub_dir: "org.fdroid.fdroid",
product_specific: true,
}
android_app_import {
name: "FDroid",
apk: "FDroid.apk",
presigned: true,
preprocessed: true,
dex_preopt: {
enabled: false,
},
product_specific: true,
optional_uses_libs: [
"androidx.window.extensions",
"androidx.window.sidecar",
],
required: [
"additional_repos.xml",
"additional_repos.json",
],
}