feat(android): add Pixel 10 optimized build profile
Pixel 10 APK / build (push) Failing after 7m26s

This commit is contained in:
Codex
2026-08-09 17:19:52 +02:00
parent 7b942e9bc3
commit 05e8639b67
6 changed files with 273 additions and 0 deletions
+13
View File
@@ -73,6 +73,19 @@ android {
versionNameSuffix "-alpha"
manifestPlaceholders = [appName: "WebLibre Alpha (Legacy)", enableImpeller: "false"]
}
// Pixel 10 devices are 64-bit only and ship a 120 Hz display. Keep a
// separate, side-by-side installable identity for the optimized fork,
// retain Impeller, and prevent transitive dependencies from packaging
// unused 32-bit native libraries.
pixel10 {
dimension "track"
applicationId "cc.mrblake.mrbweblibre"
versionNameSuffix "-pixel10"
manifestPlaceholders = [appName: "MrbWebLibre", enableImpeller: "true"]
ndk {
abiFilters "arm64-v8a"
}
}
}
sourceSets {