I have the following in my android app module build.gradle file.
android {
defaultConfig {
...
}
signingConfigs {
if (System.getEnv()['CIRCLE-CI']) { /* CI System */
localMachine { /* CI System KeyStore file and properties. */
...
keyAlias = "ABC"
}
playStore { /* CI System KeyStore file and properties. */
...
keyAlias = "ABC"
}
} else { /* Local machine, not CI System. */
localMachine { /* debug.keystore local file and properties. */
...
keyAlias = "androiddebugkey"
}
playStore { /* debug.keystore local file and properties. */
...
keyAlias = "androiddebugkey"
}
}
}
productFlavors {
productOne {
...
}
productTwo {
...
}
}
buildTypes {
debug {
...
}
release {
...
}
}
}
/** This is where the problem is **/
android.applicationVariants.all { variant ->
if (variant.mergedFlavor.name == "productOne") {
if (variant.buildType.name == "debug") {
variant.signingConfig android.signingConfigs.localMachine
} else if (variant.buildType.name == "release") {
variant.signingConfig android.signingConfigs.playStore
}
} else if (variant.mergedFlavor.name == "productTwo") {
if (variant.buildType.name == "debug") {
variant.signingConfig android.signingConfigs.localMachine
} else if (variant.buildType.name == "release") {
variant.signingConfig null
}
}
}
}
Expected output is as follows.
productOneDebug -> Sign with signingConfigs.localMachine
productTwoDebug -> Sign with signingConfigs.localMachine
productOneRelease -> Sign with signingConfigs.playStore
productTwoRelease -> Unsigned.
Actual output is as follows.
productOneDebug -> Signed with signingConfigs.localMachine
productTwoDebug -> Signed with signingConfigs.localMachine
productOneRelease -> Unsigned.
productTwoRelease -> Unsigned.
Why are Release apks always unsigned? The intention is to only have ProductTwo Release apk unsigned, but ProductOne Release apk should be signed based on the given configuration.
Apparently, this is what happens during the Gradle Sync.
Variant.signingConfig
is a Over-written mechanism from both Flavor and Build-type, in the same order, based on whether a value exists.And the resulting Variants will be -
over-written by
debug.signingConfig
over-written by
debug.signingConfig
over-written by
release.signingConfig
if exists.over-written by
release.signingConfig
if exists.