Skip to content

Commit

Permalink
QoL: Allow debug version installed next to release version (#501)
Browse files Browse the repository at this point in the history
* Add QoL debug variant

* Add trailing newline
  • Loading branch information
MV-GH authored Jun 11, 2023
1 parent 4b330ba commit cb2f3d8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ android {
signingConfig signingConfigs.release
}
}

debug {
applicationIdSuffix '.debug'
versionNameSuffix ' (DEBUG)'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
Expand Down
3 changes: 3 additions & 0 deletions app/src/debug/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<resources>
<string name="app_name">Jerboa (DEBUG)</string>
</resources>

0 comments on commit cb2f3d8

Please sign in to comment.