-
Notifications
You must be signed in to change notification settings - Fork 36
/
gradle.properties
26 lines (26 loc) · 1.1 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
# Project-wide Gradle settings.
# Specifies the JVM arguments used for the daemon process
# The setting is particularly useful for tweaking memory settings
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# Enable AndroidX
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete"
kotlin.code.style=official
# Enable non-transitive R class namespacing where each library only contains
# references to the resources it declares instead of declarations plus all
# transitive dependency references
android.nonTransitiveRClass=true
# Generate compile-time only R class for app modules
android.enableAppCompileTimeRClass=true
# Only keep the single relevant constructor for types mentioned in XML files
# instead of using a parameter wildcard which keeps them all
android.useMinimalKeepRules=true
# Enable resource optimizations for release build
android.enableResourceOptimizations=true
# Other
org.gradle.parallel=true
org.gradle.configureondemand=true
org.gradle.caching=true
org.gradle.unsafe.watch-fs=true