资源集中的风味显示两次

时间:2019-02-14 16:54:32

标签: android gradle android-productflavors android-flavordimension

我在两个维度上使用flavor,当我想为资源集中的每个维度组合创建资源文件时,我两次看到相同的组合。我使捕获无效,但是对于每个组合重复存在的相同操作,之前存在两种相同的选择。有什么问题吗?

我有两个维度,一个代表不同的主题,另一个代表我的客户公司名称。我能做什么?

enter image description here

这是风味代码:

 flavorDimensions "diffBgs" , "company"
productFlavors {

...
...

    bgTwentyFive {
        applicationIdSuffix ".twentyFive"
        dimension "diffBgs"


    }

    bgTwentySix {
        applicationIdSuffix ".twentySix"
        dimension "diffBgs"


    }

    bgTwentySeven {
        applicationIdSuffix ".twentySeven"
        dimension "diffBgs"


    }

    bgTwentyEight {
        applicationIdSuffix ".twentyEight"
        dimension "diffBgs"


    }


    soheilCo{
        applicationIdSuffix ".soheilCo"
        dimension "company"
    }

    elico{
        applicationIdSuffix ".elico"
        dimension "company"
    }

    ncco{
        applicationIdSuffix ".ncco"
        dimension "company"
    }

0 个答案:

没有答案