我的应用程序级 build.gradle 文件中有以下内容:
flavorDimensions "store", "features"
productFlavors {
amazon {
dimension "store"
...
}
play {
dimension "store"
...
}
none {
dimension "features"
...
}
myAwesomeFeature {
dimension "features"
...
}
anotherAwesomeFeature {
dimension "features"
...
}
all {
dimension "features"
...
}
}
当我尝试同步我的项目文件时出现错误,提示“错误:没有风味与风味维度‘商店’相关联。” 我之前在 productFlavors 中使用了 flavorDimension,但有编译器警告说它已被弃用为“维度”......其中一个(或两个)都会引发错误。
我显然有 2 种口味的尺寸商店。我查看了文档和示例代码,但找不到问题所在。我尝试将我的 gradle 插件从 1.2.0 更新到 1.2.3,并且我尝试将我的 gradle 版本从 2.2.1 升级到 2.4。