mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-22 15:19: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
|
isJniDebuggable = false
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
isMinifyEnabled = false
|
isMinifyEnabled = true
|
||||||
isJniDebuggable = false
|
isJniDebuggable = false
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,13 @@ android {
|
||||||
isMinifyEnabled = true
|
isMinifyEnabled = true
|
||||||
isJniDebuggable = false
|
isJniDebuggable = false
|
||||||
}
|
}
|
||||||
|
create("debugNoMinify") {
|
||||||
|
isDebuggable = true
|
||||||
|
isMinifyEnabled = false
|
||||||
|
isJniDebuggable = false
|
||||||
|
signingConfig = signingConfigs.getByName("debug")
|
||||||
|
applicationIdSuffix = ".debugNoMinify"
|
||||||
|
}
|
||||||
base.archivesBaseName = "HeliBoard_" + defaultConfig.versionName
|
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