build.gradle には、次の 2 つの製品フレーバーがあります。
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "23.0.2"
aaptOptions.setProperty("cruncherEnabled", false)
defaultConfig {
minSdkVersion 15
targetSdkVersion 16
applicationId "com.example.app"
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
def final myApplicationId = 'com.example.app'
def final appName = 'app'
productFlavors {
dev {
resValue "string", "app_name", appName
resValue "string", "APIURL", "http://prod.example.com/"
}
production {
resValue "string", "app_name", appName
resValue "string", "APIURL", "http://test.example.com/"
}
}
buildTypes{
dtest {
applicationIdSuffix ".dev"
}
dprod{
}
}
}
dependencies {
compile()
few libraries
}
私の dev/AndroidManifest.xml は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app.dev"
android:installLocation="auto"
android:versionCode="3"
android:versionName="3.1">
</manifest>
私の production/AndroidManifest.xml は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app"
android:installLocation="auto"
android:versionCode="3"
android:versionName="3.1">
</manifest>
私の main/AndroidManifest.xml は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app"
android:installLocation="auto"
android:versionCode="3"
android:versionName="3.1">
<application>
<activity list.. </activity>
</application>
</manifest>
dev と production フレーバーを同じデバイスにインストールしたいのですが、異なる applicationId を設定してもパッケージ名を変更できません。メインマニフェストで言及したパッケージ名が何らかの方法でbuild.gradleからapplicationIdをオーバーライドしていると思われます。誰かが私を正しい方向に向けてくれれば幸いです。ありがとう。