根据productFlavor设置applicationIdSuffix

时间:2015-03-27 10:00:48

标签: android gradle build.gradle

我们有2个productFlavors testServer,liveServer )和2个构建类型( debug,release)。

由于现有的API密钥,我必须根据buildType + productFlavor附加包名称。

例如:

buildTypes {
  debug {
   applicationIdSuffix '.dbg' + (testServer ? '.test' : '.live')
  }

  release {
   applicationidSuffix '' + (testServer ? '.test')
  }  
}
这可能吗?如何?

1 个答案:

答案 0 :(得分:7)

productFlavors {
    testServer {
        applicationId = "com.example.my.pkg.test"
    }
    liveServer {
        applicationId = "com.example.my.pkg.live"
    }
}

buildTypes {
    debug {
        applicationIdSuffix ".debug"
    }
}

有关更多信息,请查看有关应用程序ID的Android documentation