mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 23:51:21 +02:00
Allow debug builds to to be installed alongside the stable app (#565)
## Description This PR updates the debug build config to allow side by side installation with the mainline/stable release by changing the app name and app ID. This is a convenience change to allow contributors to test debug builds on their personal devices without overwriting the existing stable version of the app
This commit is contained in:
parent
86e5e5ab54
commit
bcc7e660ea
2 changed files with 5 additions and 0 deletions
|
|
@ -58,6 +58,7 @@ android {
|
|||
debug {
|
||||
isMinifyEnabled = false
|
||||
isDebuggable = true
|
||||
applicationIdSuffix = ".debug"
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
|
|
|
|||
4
app/src/debug/res/values/strings.xml
Normal file
4
app/src/debug/res/values/strings.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name" translatable="false">Wholphin (Debug)</string>
|
||||
</resources>
|
||||
Loading…
Add table
Add a link
Reference in a new issue