-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
gradle.properties
25 lines (19 loc) · 892 Bytes
/
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
org.gradle.caching=true
org.gradle.daemon=true
# Gradle will run in incubating parallel mode
org.gradle.parallel=true
org.gradle.configureondemand=true
android.useAndroidX=true
android.enableJetifier=false
# 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
# Specifies the JVM arguments used for the daemon process,
# for tweaking memory settings
org.gradle.jvmargs=-Xmx4g -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g
# show deprecated gradle features used in scripts
org.gradle.warning.mode=all
# until we remove AndroidAnnotations, classes like ActivityMain still need
# @EActivity(R.layout.activity_main), therefore resource Ids must be final
android.nonFinalResIds=false