From 903a18c2a3c264bf0f97bc7cdacea97e61c9b17d Mon Sep 17 00:00:00 2001 From: Meenbeese Date: Thu, 1 Aug 2024 17:27:25 -0400 Subject: [PATCH] Enable debuggable build type for debugging --- app/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 951c518f5..c7f58ba15 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,6 @@ apply from: "../commons-device.gradle" apply plugin: 'kotlin-android' -apply from : '../dependencies.gradle' +apply from: '../dependencies.gradle' /* gets the version name from the latest Git tag, stripping the leading v off */ def getVersionName = { -> @@ -35,6 +35,10 @@ android { shrinkResources false minifyEnabled false } + debug { + debuggable true + applicationIdSuffix '.debug' + } } kotlinOptions {