-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
gradle.properties
executable file
·28 lines (25 loc) · 1.36 KB
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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