gpt4 book ai didi

java - Gradle 构建失败 : could not find org. jetbrains.kotlin 即使我没有使用 Kotlin

转载 作者:行者123 更新时间:2023-12-05 00:10:25 25 4
gpt4 key购买 nike

我正在使用 Java 在 Android Studio IDE 中创建一个应用程序,但是每当我构建我的项目时都会出现此错误:

Could not find org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10.
Required by:
project :app

我已经检查了所有以前的答案,但它们已经过时了。我什至没有在任何地方使用过 Kotlin,但尽管如此,这个错误还是来了。这是我的应用级 Gradle 代码:

plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.google.gms.google-services'
}

android {
compileSdk 32

defaultConfig {
applicationId "com.example.safechat"
minSdk 26
targetSdk 32
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'
}
buildFeatures {
viewBinding true
}
}

dependencies {

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'androidx.navigation:navigation-fragment:2.3.5'
implementation 'androidx.navigation:navigation-ui:2.3.5'
implementation 'com.google.firebase:firebase-auth:21.0.1'
testImplementation 'junit:junit:'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation platform('com.google.firebase:firebase-bom:29.0.1')
implementation 'com.google.firebase:firebase-analytics'
implementation 'androidx.browser:browser:1.4.0'

}

下面是我的项目级 Gradle 代码:

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
classpath 'com.google.gms:google-services:4.3.10'

}
}

allprojects {
repositories {
google()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

请帮忙,因为我无法在不测试旧功能的情况下开发更多功能。 (项目级Gradle文件第8行导致删除错误,所以我一定要保留它)

编辑 1 - 从此处以及我自己的文件中的代码中删除了令人困惑的一行,没有任何区别。

编辑 2 - 添加了必要的行以进行更多说明。

最佳答案

将 jcenter() 添加到您的存储库

    buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
classpath 'com.google.gms:google-services:4.3.10'
}
}

allprojects {
repositories {
google()
jcenter()
}
}

同时将 java 11 添加到您的项目中

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
}

关于java - Gradle 构建失败 : could not find org. jetbrains.kotlin 即使我没有使用 Kotlin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70360745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com