add comments about build variants

This commit is contained in:
Helium314 2025-04-06 10:50:10 +02:00
parent 6995266bd1
commit 22eb48ff91

View file

@ -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