Home > OS >  Does Flutter automatically set the targetSdkVersion to the latest version on SDK version you have in
Does Flutter automatically set the targetSdkVersion to the latest version on SDK version you have in

Time:07-27

I uploaded an android application. And one of the clients had the latest version of Android, and could not install it. I updated the SDK to version 33, will flutter automatically change my targetSdkVersion?

CodePudding user response:

navigate to ./android/app/build.gradle. and change the parameters there

defaultConfig {
    // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
    applicationId "com.example.projectname"
    minSdkVersion 19 //*** This is the part that needs to be changed, previously was 16
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

CodePudding user response:

In the application level build.gradle you can set targetSdkVersion

    defaultConfig {
    // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
    applicationId "com.test.appname"
    minSdkVersion 21
    targetSdkVersion 33
    versionCode flutterVersionCode.toInteger()
    versionName flutterVersionName
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
  • Related