From 63973c40861dfd72d53732a76803a0378e7ffe17 Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Mon, 28 Jan 2019 18:00:21 +0100 Subject: [PATCH] Add application id suffix for debug builds. This makes it a bit more pleasant to work with devices that also have the Nightly builds installed. --- app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 4ab05f1fa..75864b495 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -18,6 +18,9 @@ android { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } + debug { + applicationIdSuffix ".debug" + } } flavorDimensions "abi"