但是根据我目前的设置,我需要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?
谢谢!