diff --git a/src/blobs/entry.ts b/src/blobs/entry.ts index 615b62a..175b2be 100644 --- a/src/blobs/entry.ts +++ b/src/blobs/entry.ts @@ -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 }