forked from divkit/divkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradle.properties
47 lines (35 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.vfs.watch=true
testVariant = debug
disableLogsInBuild = false
disableAssertsInBuild = false
tanker.oauthToken =
# AndroidX
android.useAndroidX=true
android.enableJetifier=true
android.jetifier.ignorelist = shadows-supportv4.*
#------------------- GRADLE INTERNAL PROPERTIES ----------------------
org.gradle.jvmargs=-Xmx8g -Xms256m -XX:+UseParallelGC
# Default timeout is 30000 which is not enough for yandex artifactory
systemProp.org.gradle.internal.http.connectionTimeout=120000
systemProp.org.gradle.internal.http.socketTimeout=180000
#---------------------------------------------------------------------
# To be enabled
# android.enableUnitTestBinaryResources=true
kapt.incremental.apt=true
android.testConfig.useRelativePath=true
rootProjectDir = .
# Android BuildFeatures Defaults
# https://developer.android.com/studio/releases/gradle-plugin#buildFeatures
# AIDL generation and resValue Injection by libraries are enabled by default,
# we just explicitly declare them here.
android.defaults.buildfeatures.aidl=true
android.defaults.buildfeatures.resvalues=true
# Disable BuildConfig class generation by default. You can opt-in for BuildConfig generation in your
# module by adding `android { buildFeatures { buildconfig = true } }` in module's build.gradle
android.defaults.buildfeatures.buildconfig=true
# We don't have any renderscripts and shaders, so disable their processors.
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.shaders=false
android.disableAutomaticComponentCreation=true