原因:java.lang.NoClassDefFoundError:组织/gradle/内部/实现/com/谷歌/公共/收集/列表

yzuktlbb  于 2023-03-13  发布在  Java
关注(0)|答案(3)|浏览(293)

当我在Android Studio中创建新项目,并加载旧项目时,我得到了这个

java.lang.NoClassDefFoundError: org/gradle/internal/impldep/com/google/common/collect/Lists**
**java.lang.ClassNotFoundException: org.gradle.internal.impldep.com.google.common.collect.Lists
ERROR: Unable to load class 'org.gradle.internal.impldep.com.google.common.collect.Lists'

这是我的成绩单

plugins {
    id 'com.android.application'
    id 'kotlin-android'
}

android {
    compileSdkVersion 29
    buildToolsVersion "30.0.0"

    defaultConfig {
        applicationId "com.ncf.fitness"
        minSdkVersion 21
        targetSdkVersion 29
        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 "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.2.0'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.google.android.material:material:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
aij0ehis

aij0ehis1#

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

您没有添加Kotlin版本。请尝试添加kotlin version而不是$kotlin_version

testImplementation 'junit:junit:4.+'

它看起来还没有完成version name
然后同步

lfapxunr

lfapxunr2#

我也有同样的问题,我这样解决了。
首先转到Module build.gradle文件,在依赖项中将gradle版本更改为3.2.1

dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
}

然后转到gradle-wrapper.properties文件,将gradle版本更改回gradle-5.4.1-all.zip

distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

同步完成,问题解决。
我还必须将项目的build.gradle中的依赖项版本更改为

implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'

最后...

wtzytmuj

wtzytmuj3#

当我降级Gradle插件时,这对我很有帮助。之前的版本如屏幕上的

相关问题