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'
}
型
有什么我可以改变的吗?或者我改变了什么?
1条答案
按热度按时间disho6za1#
你可以尝试以下方法,这对我很有效:
将Gradle版本设置为所需版本后,请按照https://developer.android.com/build/releases/gradle-plugin#groovy(Gradle版本部分)中的说明设置插件
com.android.application
和com.android.library
的版本。你的情况是7.4.0.