mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-18 13:22:03 +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
|
||||
}
|
||||
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
|
||||
isJniDebuggable = false
|
||||
applicationIdSuffix = ".debug"
|
||||
|
@ -44,7 +46,7 @@ android {
|
|||
isMinifyEnabled = true
|
||||
isJniDebuggable = false
|
||||
}
|
||||
create("debugNoMinify") {
|
||||
create("debugNoMinify") { // for faster builds in IDE
|
||||
isDebuggable = true
|
||||
isMinifyEnabled = false
|
||||
isJniDebuggable = false
|
||||
|
|
Loading…
Add table
Reference in a new issue