Skip to content

Commit

Permalink
fix: Update minSdkVersion to 21 to Fix NDK Compatibility Issue (#1832)
Browse files Browse the repository at this point in the history
Flutter 3.22 had dropped support for Android KitKat https://docs.flutter.dev/release/breaking-changes/android-kitkat-deprecation, update minSdkVersion to 21 to Fix NDK Compatibility Issue.
  • Loading branch information
baharudin-yusup authored and sylar committed Nov 11, 2024
1 parent 9a870b0 commit e01bfb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
compileSdkVersion safeExtGet('compileSdkVersion', 31)

defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 16)
minSdkVersion safeExtGet('minSdkVersion', 21)

consumerProguardFiles 'consumer-rules.pro'
}
Expand Down

0 comments on commit e01bfb5

Please sign in to comment.