Gradle依赖项之transitive/exclude/force/(+)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u014780554/article/details/80357464
  • 传递(transitive)
  • 排除(exclude)
  • 强制(force)
  • 动态版本(+)

    implementation('com.xxx:xxx:1.0.0@aar') {
        transitive = true
        changing = true
        force = true
        exclude group: 'com.xxx', module: 'xxx'
    }

这里写图片描述

参考资料:https://blog.csdn.net/pkaq_/article/details/53906668

猜你喜欢

转载自blog.csdn.net/u014780554/article/details/80357464
今日推荐