フリーとプロ (バージョン) の 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 をアップロードしようとしました。Pro フレーバーは問題ありませんが、パッケージが正しくないため、無料のフレーバーは Google に受け入れられません。どうすればこれを解決できますか?
====== 解決済み: ====== applicationIdSuffix は buildTypes でのみ機能します。