Update gradle build script to allow installing debug builds alongside store version

This will allow developers, testers, etc to work on Tusky will not having to worry
about overwriting, uninstalling, fiddling with a preinstalled application which would
mean having to login again every time the development cycle starts/finishes and
manually reinstalling the app.
This commit is contained in:
HellPie 2018-08-30 17:39:50 +02:00 committed by HellPie
parent a0a41ca08f
commit 8f6c327cc7
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@ android {
shrinkResources true
proguardFiles 'proguard-rules.pro'
}
debug { }
debug {
applicationIdSuffix ".debug"
}
}
flavorDimensions "color"