From 8f6c327cc71dde2728b445217f3ccd827d06528f Mon Sep 17 00:00:00 2001 From: HellPie Date: Thu, 30 Aug 2018 17:39:50 +0200 Subject: [PATCH] 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. --- app/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index d9137fe2a..566060618 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -30,7 +30,9 @@ android { shrinkResources true proguardFiles 'proguard-rules.pro' } - debug { } + debug { + applicationIdSuffix ".debug" + } } flavorDimensions "color"