The project now uses Kotlin DSL instead Groovy files to compile the whole project. The migration was a 1:1 between the old files and the new ones. Also, AppInjector and SendStatusBroadcastReceiver were fixed according the building errors.
19 lines
603 B
Properties
19 lines
603 B
Properties
# Project-wide Gradle settings.
|
|
# Put 4GiB of memory for Gradle
|
|
org.gradle.jvmargs = -Xmx4096m
|
|
# Parallel execution
|
|
org.gradle.parallel = true
|
|
# Use AndroidX libraries
|
|
android.useAndroidX = true
|
|
# Disable incremental annotations
|
|
kapt.incremental.apt = false
|
|
# Change console to verbose
|
|
org.gradle.console = verbose
|
|
# Enable log (info)
|
|
org.gradle.logging.level = info
|
|
# Enable warning mode
|
|
org.gradle.warning.mode = all
|
|
# Automatically convert third-party libraries to use AndroidX
|
|
android.enableJetifier = true
|
|
# Kotlin code style for this project: "official" or "obsolete"
|
|
kotlin.code.style = official
|