fix: apk crash on some platforms due new flutter version

This commit is contained in:
Christian Kußowski 2026-01-23 08:00:27 +01:00
parent a1214908c2
commit 19e0bda239
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
2 changed files with 4 additions and 1 deletions

View file

@ -1,2 +1,2 @@
FLUTTER_VERSION=3.38.4
FLUTTER_VERSION=3.38.7
JAVA_VERSION=17

View file

@ -75,6 +75,9 @@ android {
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
ndk { // Workaround for https://github.com/flutter/flutter/issues/162153#issuecomment-2612443642
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64', 'x86'
}
}
buildTypes {