升级 flutter android 构建工具

Upgrading flutter android build tools

Flutter 默认在 android API 级别 29 上构建 apk 我想将它升级到 30 我怎么能?我是 flutter 的新手 我不知道,我尝试 google 但没有帮助

在Android Studio 中打开一个Flutter 项目,您必须编辑build.gradle 文件。在flutter工程中,在路径./android/app/build.gradle

defaultConfig {
    // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
    applicationId "com.example.projectname"
    minSdkVersion 19
    targetSdkVersion 28 // Set this to 30
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

灵感来自答案并相应修改