gradle 排除jar包依赖
Posted 留白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gradle 排除jar包依赖相关的知识,希望对你有一定的参考价值。
1 1.直接在configuration中排除 2 configurations { 3 compile.exclude module: ‘commons‘ 4 all*.exclude group: ‘org.gradle.test.excludes‘, module: ‘reports‘ 5 } 6 7 2.在具体的某个dependency中排除 8 dependencies { 9 compile("org.gradle.test.excludes:api:1.0") { 10 exclude module: ‘shared‘ 11 } 12 }
以上是关于gradle 排除jar包依赖的主要内容,如果未能解决你的问题,请参考以下文章
Gradle for Android 第三篇( 依赖管理 )