当前位置:   article > 正文

flavor 配置_buildconfig.flavor

buildconfig.flavor

1. flavorDimensions

  • productFlavors 配合使用
  • 使用 flavorDimensions 定义风味维度,维度越多,能打出的渠道包越丰富
1.1 单维度
defaultConfig {
    ...
    flavorDimensions "channel"
}

productFlavors {
    master {
        
    }
    c318 {
       
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 单风味维度只能构建 productFlavors 里定义的风味维度,不能组合。 如图只能构建 master 和 c318 两种渠道包
    在这里插入图片描述
1.2 多维度
defaultConfig {
    ...
    flavorDimensions "channel", "company"
}

productFlavors {
    companyA {
        dimension "company"
    }
    companyB {
        dimension "company"
    }
    master {
        dimension "channel"
    }
    c318 {
        dimension "channel"
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 根据 company 和 channel 进行组合, 上述可以构建 C318CompanyA,C318CompanyB,MasterCompanyA,MasterCompanyB 四种组合的渠道包
    在这里插入图片描述

2. BuildConfig

  • 结合 BuildConfig 生成属性
 buildConfigField "boolean", "LOG_DEBUG", "false"
 // 动态赋值 url 和端口
 buildConfigField('String', 'BASE_URL', '"https://www.baidu.com/"')
 buildConfigField('int', 'URL_PORT', '5672')
  • 1
  • 2
  • 3
  • 4
  • 通过 BuildConfig 判断当前 flavor
public final class BuildConfig {
  public static final boolean DEBUG = Boolean.parseBoolean("true");
  public static final String APPLICATION_ID = "com.tinnove.mediacenter";
  public static final String FLAVOR = "c318";
  ...
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3. sourceSets

  • android{} 标签下的 sourceSets{} 标签:可以来设置一些渠道的资源目录,设置后,同名资源会以渠道内的为主
sourceSets {
        master {
            java.srcDirs = ['src/master/java']
            res.srcDirs = ['src/master/res']
        }

        c318 {
            java.srcDirs = ['src/c318/java']
            res.srcDirs = ['src/c318/res']
        }

    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

4. 多维度打包注意事项

按顺序,维度越来越低, 两个维度存在相同命名的情况下,高维度的会覆盖低维度的

5. 参考资料

Android | gradle Flavor多渠道打包
Android 多渠道打包

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/77697
推荐阅读
相关标签
  

闽ICP备14008679号