android - Flutter gradle.build 错误 : Could not get unknown property 'compileSdkVersion' for extension 'flutter' of type FlutterExtension

标签 android flutter android-studio gradle build.gradle

我手动将 flutter 项目添加到 AndroidStudioProjects 目录。
我开始收到此错误
错误:

FAILURE: Build failed with an exception.

 * Where:
Build file 'C:\Users\username\AndroidStudioProjects\projectName\android\app\build.gradle' line: 29

 * What went wrong:
A problem occurred evaluating project ':app'.
> Could not get unknown property 'compileSdkVersion' for extension 'flutter' of type FlutterExtension.
build.gradle 文件:
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
    flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
    flutterVersionName = '1.0'
}

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
    compileSdkVersion flutter.compileSdkVersion     // FAILURE: Build failed with an exception.

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    kotlinOptions {
        jvmTarget = '1.8'
    }

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.example.newweather"
        minSdkVersion flutter.minSdkVersion
        targetSdkVersion flutter.targetSdkVersion
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
    }

    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.debug
        }
    }
}

flutter {
    source '../..'
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

我试过这些,他们没有工作:
https://stackoverflow.com/a/60565001/17740672
将 compileSdkVersion 更改为常数
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj

最佳答案

试试命令

flutter clean



flutter upgrade


为我工作。

关于android - Flutter gradle.build 错误 : Could not get unknown property 'compileSdkVersion' for extension 'flutter' of type FlutterExtension,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70450035/

相关文章:

java - Eclipse 无法导入 Appcompat-v7

flutter - 嵌套json数据的序列化

java - 如何创建算法来在 RecyclerView 中设置多重检查项目

android - 如何在 Mac、Windows 和 Linux 中使用 keytool 为默认调试 key 生成 SHA1、SHA256、MD5?

android - 在Android项目build.gradle文件中更新Google Firebase依赖项

java - Android 双不工作

java - 找不到参数的方法实现() [DefaultExternalModuleDependency{group ='com.google.firebase' ,

机器人 : flexbox not wrapping content

android - android中通过https返回网络错误的React-native POST请求

firebase - flutter firebase auth 应用栏标题的当前用户电子邮件