entry: Force Soong for prebuilt APEXs

This commit is contained in:
Danny Lin 2021-11-14 16:23:48 -08:00
parent 43bb6e6443
commit 29c866e0bd

View file

@ -48,6 +48,11 @@ export function blobNeedsSoong(entry: BlobEntry, ext: string) {
return true
}
// Force Soong for APEXs to make them work better with flattened APEX builds.
if (ext == '.apex') {
return true
}
// Otherwise, just copy the file
return false
}