chore: update Flutter to version 3.32.0 (#85)

This commit is contained in:
Dr.Blank 2025-05-28 11:32:07 +05:30 committed by GitHub
parent 19046d92d9
commit 8485a26f1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 79 additions and 63 deletions

View file

@ -31,7 +31,11 @@ if (keystorePropertiesFile.exists()) {
android {
namespace "dr.blank.vaani"
compileSdk flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
// ndkVersion flutter.ndkVersion
// The NDK version is set to a specific version since it was not building
// TODO remove when https://github.com/flutter/flutter/issues/139427 is closed
ndkVersion = "29.0.13113456"
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
@ -89,3 +93,11 @@ flutter {
}
dependencies {}
// https://stackoverflow.com/questions/78626580/how-to-resolve-app-execution-failure-due-to-androidx-corecore1-15-0-alpha
configurations.all {
resolutionStrategy {
force "androidx.core:core:1.13.1"
force "androidx.core:core-ktx:1.13.1"
}
}