com.android.builder.dexing.DexArchiveBuilderException

版权声明:本文为博主原创文章,转载请声明出处 https://blog.csdn.net/qq_16666847/article/details/80278793
  • 被这个bug 折磨了半天,比对之前代码,发现如果你的module 中使用了 Java1.8,那你必须也要添加如下代码到你的app gradle 中
compileOptions {
        sourceCompatibility 1.8
        targetCompatibility 1.8
    }

猜你喜欢

转载自blog.csdn.net/qq_16666847/article/details/80278793