发布相同的应用程序但两个版本

时间:2016-04-15 21:05:21

标签: android gradle google-play android-gradle build.gradle

您好我希望发布2个类似的应用程序,但其中一个有商业广告,另一个有钱。我该如何处理? 在gradle中更改applicationId就足够了吗?由于该游戏商店不允许相同的包名... 请告诉我如何在Studio中安排此内容以及如何发布它。

2 个答案:

答案 0 :(得分:2)

您可以在build.gradle文件中定义风格。

apply plugin: 'com.android.application'

android {

    defaultConfig { ... }
    signingConfigs { ... }
    buildTypes { ... }
    productFlavors {
      demo {
        applicationId "com.buildsystemexample.app.demo"
        versionName "1.0-demo"
      }
      full {
        applicationId "com.buildsystemexample.app.full"
        versionName "1.0-full"
      }
   }     
}

此处有更多info

答案 1 :(得分:1)

flavors解决了这个问题。我认为这个链接会有所帮助。