-
Notifications
You must be signed in to change notification settings - Fork 6
/
gradle.properties
32 lines (24 loc) · 1.3 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
# 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
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# This setting is only for local builds, circleci has another setting (_JAVA_OPTIONS) which has higher priority
org.gradle.jvmargs=-Xmx3g
# Android X setup https://developer.android.com/jetpack/androidx/migrate
android.useAndroidX=true
# jetifier could be disabled since our dependencies don't require it anymore (according to build analyzer)
# the build time gain is pretty low so keeping it for now to be on the safe side
android.enableJetifier=true
# speed up gradle build times
# https://docs.gradle.org/current/userguide/performance.html
org.gradle.parallel=true
org.gradle.caching=true
# TODO: [AN-3874] - Move away from deprecated BuildConfig
android.defaults.buildfeatures.buildconfig=true
# Needed for example apps to run on older Android versions (API Version <=23)
# ref: https://issuetracker.google.com/issues/230454566#comment18
android.useFullClasspathForDexingTransform=true