android: build.gradle: Cleanup build types.
This commit is contained in:
parent
4769d716fc
commit
26ee6844c2
|
@ -63,7 +63,6 @@ android {
|
||||||
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
|
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
|
||||||
relWithDebInfo {
|
relWithDebInfo {
|
||||||
initWith release
|
initWith release
|
||||||
applicationIdSuffix ".debug"
|
|
||||||
versionNameSuffix '-debug'
|
versionNameSuffix '-debug'
|
||||||
signingConfig signingConfigs.debug
|
signingConfig signingConfigs.debug
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
|
@ -76,7 +75,6 @@ android {
|
||||||
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
|
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
|
||||||
debug {
|
debug {
|
||||||
// TODO If this is ever modified, change application_id in debug/strings.xml
|
// TODO If this is ever modified, change application_id in debug/strings.xml
|
||||||
applicationIdSuffix ".debug"
|
|
||||||
versionNameSuffix '-debug'
|
versionNameSuffix '-debug'
|
||||||
debuggable true
|
debuggable true
|
||||||
jniDebuggable true
|
jniDebuggable true
|
||||||
|
@ -85,11 +83,7 @@ android {
|
||||||
|
|
||||||
flavorDimensions "version"
|
flavorDimensions "version"
|
||||||
productFlavors {
|
productFlavors {
|
||||||
canary {
|
mainline {
|
||||||
dimension "version"
|
|
||||||
applicationIdSuffix ".canary"
|
|
||||||
}
|
|
||||||
nightly {
|
|
||||||
dimension "version"
|
dimension "version"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue