我需要在Android中解决此错误

时间:2016-09-06 10:19:17

标签: android

错误:

  

.dex文件中的方法引用数不能超过64K。   了解如何解决此问题   https://developer.android.com/tools/building/multidex.html

1 个答案:

答案 0 :(得分:1)

在您的Gradle中执行此操作

 defaultConfig {
    .....
    ......
    multiDexEnabled true
    .......
}

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

} 并在您的 应用程序代码

中的清单中
<application
    android:name="android.support.multidex.MultiDexApplication"
    .......
   .........

乐意帮助