在Gradle中,将不同的依赖版本应用于一种风格

时间:2016-11-09 15:10:06

标签: android gradle android-gradle build.gradle android-build

我知道如何向herehere所示的特定风味添加依赖项!

但是根据我目前的设置,我需要1种风格来使用1版本的库和所有其他风格来使用不同的版本。类似的东西:

// this gets applied to all flavors expect "otherFlavor"
compile 'com.awesome.library:lib:1.0'

// this gets applied only to "otherFlavor
otherFlavorCompile 'com.awesome.library:lib:1.1'

如果我尝试按照此代码显示,我会继续:

  

错误:任务':app:processotherFlavorDebugResources'的执行失败。   错误:包含名称为“com.awesome.library”的多个库

是可能的,而不必列出every.single.flavor?

谢谢!

0 个答案:

没有答案