当前位置: 首页 > 知识库问答 >
问题:

错误:java.lang.ClassNotFoundException:找不到类org.openjdk.jdi.ReferenceType

燕鸿波
2023-03-14

错误是什么?

共有1个答案

傅鸿波
2023-03-14

这还不清楚,但正如我所看到的,您使用了如此多的libs,所以也许您必须使用multidex。将MultidexEnabled true添加到gradle文件中。

 defaultConfig {
        applicationId "com.company.application"
        minSdkVersion 19
        targetSdkVersion 25
        versionCode 1
        multiDexEnabled true // this line
}

dependencies {
  compile 'com.android.support:multidex:1.0.1'
}

然后转到manifest.xml并添加:

<application
            android:name="android.support.multidex.MultiDexApplication" //this line >
</application>
 类似资料: