fix(android): let Flutter own Pixel 10 ABI split
Pixel 10 APK / build (push) Failing after 33m19s

This commit is contained in:
Codex
2026-08-10 07:59:11 +02:00
parent 6508dfa8a7
commit 01dcb4705d
+4 -6
View File
@@ -74,17 +74,15 @@ android {
manifestPlaceholders = [appName: "WebLibre Alpha (Legacy)", enableImpeller: "false"] manifestPlaceholders = [appName: "WebLibre Alpha (Legacy)", enableImpeller: "false"]
} }
// Pixel 10 devices are 64-bit only and ship a 120 Hz display. Keep a // 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, // separate, side-by-side installable identity for the optimized fork
// retain Impeller, and prevent transitive dependencies from packaging // and retain Impeller. The Pixel 10 build script selects android-arm64
// unused 32-bit native libraries. // with Flutter's ABI split; Gradle forbids combining that split with a
// second ndk.abiFilters declaration here.
pixel10 { pixel10 {
dimension "track" dimension "track"
applicationId "cc.mrblake.mrbweblibre" applicationId "cc.mrblake.mrbweblibre"
versionNameSuffix "-pixel10" versionNameSuffix "-pixel10"
manifestPlaceholders = [appName: "MrbWebLibre", enableImpeller: "true"] manifestPlaceholders = [appName: "MrbWebLibre", enableImpeller: "true"]
ndk {
abiFilters "arm64-v8a"
}
} }
} }