Skip to content

Commit

Permalink
Enable debuggable build type for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
meenbeese committed Nov 20, 2024
1 parent 66251f0 commit 903a18c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
@@ -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 = { ->
Expand Down Expand Up @@ -35,6 +35,10 @@ android {
shrinkResources false
minifyEnabled false
}
debug {
debuggable true
applicationIdSuffix '.debug'
}
}

kotlinOptions {
Expand Down

0 comments on commit 903a18c

Please sign in to comment.