排球 - NoClassDefFoundError

时间:2018-04-17 06:41:51

标签: android android-studio android-volley

我已经提到了this等其他答案,但仍然遇到以下异常:

  

E / UncaughtException:java.lang.NoClassDefFoundError:解析失败:Lcom / android / volley / toolbox / Volley;

以下是依赖项:

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.google.android.gms:play-services-base:12.0.1'
    implementation 'com.google.android.gms:play-services-location:12.0.1'
    implementation "com.google.firebase:firebase-messaging:15.0.0"
    implementation 'com.google.firebase:firebase-core:12.0.1'
    implementation 'com.android.volley:volley:1.1.0'

    apply plugin: 'maven'
}  

事实上,当我尝试添加Volley作为依赖项时,它永远不会显示在依赖项列表中。而显示其他谷歌库。

注意:我已经检查了其他StackOverFlow链接,所以请仅当您绝对确定答案正确地为此工作时,请随时标记重复。

2 个答案:

答案 0 :(得分:0)

打开命令提示符并重定向到项目目录并键入此

如果您是Windows用户:gradlew.bat clean

如果您是mac用户类型:./ gradlew clean

答案 1 :(得分:0)

如果您的targetSdkVersion在26到28之间,请尝试在AndroidManifest的应用程序标签中添加 uses-library android:name =“ org.apache.http.legacy” android:required =“ false” 。第二种方法是:将volley.jar导入到app / lids目录中,而不是从gradle中获取它,而是将本地jar用作build.gradle中的实现文件('libs / volley.jar')在应用程序模块中