-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
# Propiedades del proyecto Gradle | ||
|
||
# Habilita la compilación en paralelo | ||
org.gradle.parallel=true | ||
|
||
# Habilita la caché de configuración | ||
org.gradle.caching=true | ||
|
||
# Establece la versión de Kotlin | ||
kotlin.code.style=official | ||
|
||
# Configuración de memoria para Gradle | ||
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 | ||
|
||
# Habilita la compilación incremental de Kotlin | ||
kotlin.incremental=true | ||
|
||
# Habilita la compilación en modo de depuración | ||
android.useAndroidX=true | ||
android.enableJetifier=true | ||
|