-
Notifications
You must be signed in to change notification settings - Fork 4
/
gradle.properties
37 lines (27 loc) · 1.39 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
29
30
31
32
33
34
35
36
37
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# When configured, Gradle will run in incubating parallel mode.
org.gradle.parallel=true
# https://stackoverflow.com/questions/39740440/what-exactly-is-configuration-on-demand-in-gradle
org.gradle.configureondemand=true
# https://docs.gradle.org/current/userguide/build_cache.html
org.gradle.caching=true
# https://blog.gradle.org/introducing-file-system-watching
org.gradle.vfs.watch=true
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xms8g -Xmx8g -XX:MaxMetaspaceSize=1536m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Dkotlin.daemon.jvm.options=-Xms8g,-Xmx8g
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
kotlin.incremental=true
kotlin.incremental.useClasspathSnapshot=true
android.useAndroidX=true
# enable non transitive R class so as to not merge redundant resources into them
android.nonTransitiveRClass=true
# enable precompiling of application module's R class in advance
android.enableAppCompileTimeRClass=true
# Use R8 in full mode instead of ProGuard compatibility mode.
android.enableR8.fullMode=true