Skip to content

Commit

Permalink
Android: add .dev suffix to app id for debug builds
Browse files Browse the repository at this point in the history
This makes possible for debug and release builds to coexist on the same device.

Signed-off-by: Patryk Miś <foss@patrykmis.com>
  • Loading branch information
PatrykMis committed Nov 15, 2023
1 parent d513f99 commit 263fec8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ android {
}

buildTypes {
debug {
applicationIdSuffix = ".dev"
}
release {
isMinifyEnabled = false
isShrinkResources = false
Expand Down

0 comments on commit 263fec8

Please sign in to comment.