mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-19 21:59:11 +00:00
add comments about build variants
This commit is contained in:
parent
6995266bd1
commit
22eb48ff91
1 changed files with 3 additions and 1 deletions
|
@ -36,6 +36,8 @@ android {
|
||||||
isJniDebuggable = false
|
isJniDebuggable = false
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
|
// "normal" debug has minify for smaller APK to fit the GitHub 25 MB limit when zipped
|
||||||
|
// and for better performance in case users want to install a debug APK
|
||||||
isMinifyEnabled = true
|
isMinifyEnabled = true
|
||||||
isJniDebuggable = false
|
isJniDebuggable = false
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
|
@ -44,7 +46,7 @@ android {
|
||||||
isMinifyEnabled = true
|
isMinifyEnabled = true
|
||||||
isJniDebuggable = false
|
isJniDebuggable = false
|
||||||
}
|
}
|
||||||
create("debugNoMinify") {
|
create("debugNoMinify") { // for faster builds in IDE
|
||||||
isDebuggable = true
|
isDebuggable = true
|
||||||
isMinifyEnabled = false
|
isMinifyEnabled = false
|
||||||
isJniDebuggable = false
|
isJniDebuggable = false
|
||||||
|
|
Loading…
Add table
Reference in a new issue