编译项目(:somelibrary) { 排除组: 'com.google.guava' } 函数排除未找到?



我在 Android Studio 中导入了一个库,但无法排除组,因为当编译指令在包含的项目上时,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

相关内容

  • 没有找到相关文章

最新更新