Reputation: 108
where should i find minSdkVersion from 16 to 21
Upvotes: 1
Views: 192
Reputation: 782
android/app/build.gradle
it will look like this
defaultConfig {*
applicationId "***"
minSdkVersion 22
targetSdkVersion 31
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName*
}
Upvotes: 1