mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-21 22:59:10 +00:00
Add a debugNoMinify build variant
This commit is contained in:
parent
8bb8b732d8
commit
be4762f12d
2 changed files with 17 additions and 1 deletions
|
@ -36,7 +36,7 @@ android {
|
|||
isJniDebuggable = false
|
||||
}
|
||||
debug {
|
||||
isMinifyEnabled = false
|
||||
isMinifyEnabled = true
|
||||
isJniDebuggable = false
|
||||
applicationIdSuffix = ".debug"
|
||||
}
|
||||
|
@ -44,6 +44,13 @@ android {
|
|||
isMinifyEnabled = true
|
||||
isJniDebuggable = false
|
||||
}
|
||||
create("debugNoMinify") {
|
||||
isDebuggable = true
|
||||
isMinifyEnabled = false
|
||||
isJniDebuggable = false
|
||||
signingConfig = signingConfigs.getByName("debug")
|
||||
applicationIdSuffix = ".debugNoMinify"
|
||||
}
|
||||
base.archivesBaseName = "HeliBoard_" + defaultConfig.versionName
|
||||
}
|
||||
|
||||
|
|
9
app/src/debugNoMinify/res/values/strings.xml
Normal file
9
app/src/debugNoMinify/res/values/strings.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
SPDX-License-Identifier: GPL-3.0-only
|
||||
-->
|
||||
<resources>
|
||||
<string name="english_ime_name" translatable="false">HeliBoard debugNoMinify</string>
|
||||
<string name="spell_checker_service_name" translatable="false">HeliBoard debugNoMinify Spell Checker</string>
|
||||
<string name="ime_settings" translatable="false">HeliBoard debugNoMinify Settings</string>
|
||||
</resources>
|
Loading…
Add table
Reference in a new issue