mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-18 21:32:04 +00:00
Optimize debug build (#1411)
This commit is contained in:
parent
8edea4f7c5
commit
087f87e95c
3 changed files with 18 additions and 1 deletions
|
@ -44,6 +44,13 @@ android {
|
|||
isMinifyEnabled = true
|
||||
isJniDebuggable = false
|
||||
}
|
||||
create("debugNoMinify") {
|
||||
isDebuggable = true
|
||||
isMinifyEnabled = false
|
||||
isJniDebuggable = false
|
||||
signingConfig = signingConfigs.getByName("debug")
|
||||
applicationIdSuffix = ".debug"
|
||||
}
|
||||
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 debug</string>
|
||||
<string name="spell_checker_service_name" translatable="false">HeliBoard debug Spell Checker</string>
|
||||
<string name="ime_settings" translatable="false">HeliBoard debug Settings</string>
|
||||
</resources>
|
|
@ -1,2 +1,3 @@
|
|||
android.useAndroidX=true
|
||||
org.gradle.configuration-cache=true
|
||||
org.gradle.jvmargs=-Xmx1024m
|
Loading…
Add table
Reference in a new issue