我在Android Studio中将项目导入库,但无法排除组,因为当compile指令位于包含的项目上时,gradle找不到该排除方法方法吗?
可以找到以下方法的排除项
compile('xyc.com.whatever'){exclude 'com.google.guava'}
但不适用于:
compile project(:somelibrary) { exclude group: 'com.google.guava' }
此排除方法不适用于包含的项目吗?是什么赋予了?如何排除该组?
最佳答案
尝试:
compile( project(:somelibrary) ){
exclude group:'com.google.guava'
}
注意多余的部分。在您的情况下,闭包与
project
而不是compile
关联。关于android-studio - 编译项目(:somelibrary) { exclude group: 'com.google.guava' } function exclude not found?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36060014/