美文网首页
transformClassesWithJarMergingFo

transformClassesWithJarMergingFo

作者: 阿敏其人 | 来源:发表于2016-05-07 16:47 被阅读879次

    本文出自 “阿敏其人” 简书博客,转载或引用请注明出处。

    一、情况

    1、project引入的库引用了v4

    情况是这样子,as2.1下,当前project引用了一个库,而这个库引用了v4。

    如下所示

    当前project引用了一个库


    project引用了库.png

    库引用了v4。

    库引用了v4.png

    2、当前工程引入了github上的开源库又引用了v4

    都引入了v4.png

    此时运行,发现报错

    v4的错.png

    二、 解决办法

    在主工程的app的build.gradle上添加如下配置:

    configurations {
        all*.exclude group: 'com.android.support', module: 'support-v4'
    }
    
    解决办法.png

    再次运行,成功解决,Build Success。

    本文完。

    相关文章

      网友评论

          本文标题:transformClassesWithJarMergingFo

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