set greenDebug as default flavor (#4251)
I had it happen multiple times recently that I was testing green Tusky
but Android Studio actually put blue Tusky on my device and I wasted a
lot of time until I found out 😣
This change should tell it that greenDebug is the preferred flavor for
developing.
This commit is contained in:
parent
17e99bbc2e
commit
1cd8b497f7
1 changed files with 4 additions and 0 deletions
|
@ -41,6 +41,9 @@ android {
|
|||
buildConfigField("String", "SUPPORT_ACCOUNT_URL", "\"$SUPPORT_ACCOUNT_URL\"")
|
||||
}
|
||||
buildTypes {
|
||||
debug {
|
||||
isDefault true
|
||||
}
|
||||
release {
|
||||
minifyEnabled true
|
||||
shrinkResources true
|
||||
|
@ -55,6 +58,7 @@ android {
|
|||
resValue "string", "app_name", APP_NAME + " Test"
|
||||
applicationIdSuffix ".test"
|
||||
versionNameSuffix "-" + gitSha
|
||||
isDefault true
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue