29 lines
1.4 KiB
Properties
29 lines
1.4 KiB
Properties
# Project-wide Gradle settings.
|
|
|
|
# Gralde
|
|
# Specifies the JVM arguments used for the daemon process.
|
|
# The setting is particularly useful for tweaking memory settings.
|
|
org.gradle.jvmargs=-Xmx3072m
|
|
# This flag allows Gradle to build modules within a project in parallel instead of sequentially.
|
|
# This is only beneficial in a multi-module project.
|
|
org.gradle.parallel=true
|
|
# This flag configures only the modules needed by the project, instead of building all of them.
|
|
org.gradle.configureondemand=true
|
|
|
|
# Kotlin
|
|
# Kotlin code style for this project: "official" or "obsolete":
|
|
kotlin.code.style=official
|
|
|
|
# Android
|
|
# When set to true, this flag indicates that you want to start using AndroidX from now on.
|
|
# If the flag is absent, Android Studio behaves as if the flag were set to false.
|
|
android.useAndroidX=true
|
|
# When set to true, this flag indicates that you want to have tool support (from the Android Gradle
|
|
# plugin) to automatically convert existing third-party libraries as if they were written for
|
|
# AndroidX. If the flag is absent, Android Studio behaves as if the flag were set to false.
|
|
android.enableJetifier=true
|
|
# Enables namespacing of each library's R class so that its R class includes only the
|
|
# resources declared in the library itself and none from the library's dependencies,
|
|
# thereby reducing the size of the R class for that library
|
|
android.nonTransitiveRClass=true
|