gpt4 book ai didi

android-studio - 编译项目(:somelibrary) { exclude group: 'com.google.guava' } function exclude not found?

转载 作者:行者123 更新时间:2023-12-03 16:06:46 26 4
gpt4 key购买 nike

我在 Android Studio 中导入了一个库项目,但我无法排除一个组,因为当 compile 指令位于包含的项目中时,gradle 找不到那个 exclude 方法方法?

它可以找到以下方法的排除

      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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com