无法降级到“android gradle plugin version”的特定版本

uxhixvfz  于 12个月前  发布在  Android
关注(0)|答案(1)|浏览(208)

x1c 0d1x的数据
Android Gradle插件是灰色的,我无法更改它。
我用的是Hedgehog android studio版本。
build.gradle ->项目级

plugins {
    id 'com.android.application' version '8.0.2' apply false
    id 'com.android.library' version '8.0.2' apply false
    id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
}

字符串
build.gradle ->模块级别:

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

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

    defaultConfig {
        applicationId "com.example.masala_food_recipes"
        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.8.0'
    implementation 'androidx.appcompat:appcompat:1.6.1'
    implementation 'com.google.android.material:material:1.5.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'
}


有什么我可以改变的吗?或者我改变了什么?

disho6za

disho6za1#

你可以尝试以下方法,这对我很有效:
将Gradle版本设置为所需版本后,请按照https://developer.android.com/build/releases/gradle-plugin#groovy(Gradle版本部分)中的说明设置插件com.android.applicationcom.android.library的版本。
你的情况是7.4.0.

相关问题