AS报错:Cannot fit requested classes in a single dex file

报错

Cannot fit requested classes in a single dex file (# methods: 71309 > 65536)

解决方案

  1. 在defaultConfig中添加multiDexEnabled true
android {
    defaultConfig {
        ......
        multiDexEnabled true
    }
 }
  1. 添加依赖
implementation 'com.android.support:multidex:1.0.3'
发布了407 篇原创文章 · 获赞 90 · 访问量 39万+

猜你喜欢

转载自blog.csdn.net/yinxing2008/article/details/104259206