未指定compileSdkVersion,请将其添加到build.gradle:即使我在build.gradle文件中定义了它

vlf7wbxs  于 2023-01-26  发布在  其他
关注(0)|答案(1)|浏览(1963)

我尝试添加openweather API,当我尝试同步build.gradle文件时,弹出此错误
未指定compileSdkVersion。请将其添加到build.gradle
我的档案:

plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
}

android {
    namespace 'com.example.myapplication'
    compileSdk 33

    defaultConfig {
        applicationId "com.example.myapplication"
        minSdk 24
        targetSdk 33
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.6.0'
    implementation 'com.google.android.material:material:1.7.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}

我已经定义了CompileSDK,所以我不知道为什么这个仍然弹出。

rryofs0p

rryofs0p1#

此错误表示您未提及compileSdkVersion而未提及compileSdk。虽然两者的含义相同,但如果您遇到此问题,请在build.gradle文件中提及compileSdkVersion
此问题与7.0.0中新的Gradle更改有关,因此您可以将compileSdkVersion与string和int值一起使用,如下所示。

android {
compileSdkVersion = "S"
//or with same number version
}

相关问题