36

我正在尝试创建一个具有 2 种风格的项目:免费和专业版(版本)。

我的应用程序已经在 PlayStore 中使用不同的包(例如:com.example.appfree 和 com.example.app)

这是我的 build.gradle:

defaultConfig {
   applicationId "com.example.appfree"
}
productFlavors{
   lite {
       applicationIdSuffix 'lite'
   }

   pro {

   }
}

这是我的清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.app">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity
            android:name=".SplashScreenActivity"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity android:name=".MainActivity"/>

    </application>

</manifest>

我尝试上传免费和专业版的构建 apk。专业版还可以,但免费版不被谷歌接受,因为包装不正确。我该如何解决这个问题?

====== 已解决:====== applicationIdSuffix 仅适用于 buildTypes。

4

3 回答 3

33

借助全新的 Android Gradle 构建系统,您可以轻松构建应用的多个不同版本;例如,您可以构建应用程序的“免费”版本和“专业”版本(使用风味),它们应该在 Google Play 商店中有不同的软件包,以便可以单独安装和购买,两者都安装在同时,以此类推。同样,您也可以构建应用程序的“调试”和“alpha”和“beta”版本(使用构建类型),这些也可以类似地有助于唯一的包名称。

应用程序/build.gradle:

apply plugin: 'com.android.application'
android {
    compileSdkVersion 19
    buildToolsVersion "19.1"
    defaultConfig {
        applicationId "com.example.my.app"
        minSdkVersion 15
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
...

应用程序/build.gradle:

productFlavors {
    pro {
        applicationId = "com.example.my.pkg.pro"
    }
    free {
        applicationId = "com.example.my.pkg.free"
    }
}

buildTypes {
    debug {
        applicationIdSuffix ".debug"
    }
}
....

来自Android Studio 项目站点 - ApplicationId 与 PackageName

于 2016-09-17T23:39:39.743 回答
7
flavorDimensions "version"
productFlavors {
    demo {
        // Assigns this product flavor to the "version" flavor dimension.
        // This property is optional if you are using only one dimension.
        dimension "version"
        applicationIdSuffix ".demo"
        versionNameSuffix "-demo"
    }
    full {
        dimension "version"
        applicationIdSuffix ".full"
        versionNameSuffix "-full"
    }
}
于 2019-08-01T07:26:16.817 回答
4

除了基本的 gradle.build (应用程序级别)更改。请注意,您只需要添加您需要的配置,而不是所有这些:

productFlavors {
  enterprise {
      applicationId = "com.example.appname.enterprise"
  }
  consumer {
      applicationId = "com.example.appname.consumer"
  }
}

buildTypes {
  debug {
      applicationIdSuffix ".debug"
  }
}

我想补充一点,如果您使用的是 Firebase 并且您需要有一个google-services.json文件。您将看到以下内容:

ERROR: No matching client found for package name "com.example.appname.debug"

要修复它,您需要在 Firebase 中注册新的包名称并下载google-services.json包含所有现有包名称的新包名称。如果不是,您将收到一个编译错误,提示找不到新包名称的客户端。

于 2021-08-18T16:41:41.607 回答