美文网首页
解决包冲突

解决包冲突

作者: sunny635533 | 来源:发表于2019-06-15 18:22 被阅读0次

    在android 主项目的build.gradle 的android 打括号里 添加如下:

    //去除重复依赖库

        configurations {

            all*.exclude module: 'okhttp'

           all*.exclude module: 'okio'

            all*.excludegroup:'com.android.support',module:'support-v4'

            all*.excludegroup:'com.android.support',module:'support-v13'

        }

        configurations.all {

           resolutionStrategy.force 'com.android.support:multidex:1.0.3'

            // 解决appCompat 包冲突

            resolutionStrategy.force 'com.android.support:appcompat-v7:23.4.0'

       }

    相关文章

      网友评论

          本文标题:解决包冲突

          本文链接:https://www.haomeiwen.com/subject/rzxifctx.html