-
Notifications
You must be signed in to change notification settings - Fork 6
/
gradle.properties
60 lines (45 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
GROUP=io.github.reactivecircus.blueprint
VERSION_NAME=1.19.0-SNAPSHOT
POM_URL=https://github.com/reactivecircus/blueprint
POM_SCM_URL=https://github.com/reactivecircus/blueprint
POM_SCM_CONNECTION=scm:git:https://github.com/reactivecircus/blueprint.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/reactivecircus/blueprint.git
POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=reactivecircus
POM_DEVELOPER_NAME=Reactive Circus
org.gradle.parallel=true
org.gradle.configureondemand=true
org.gradle.caching=true
# Enable Kotlin incremental compilation
kotlin.incremental.useClasspathSnapshot=true
# Kotlin code style
kotlin.code.style=official
# Enable incremental annotation processor for KAPT
kapt.incremental.apt=true
# Turn off AP discovery in compile path to enable compile avoidance
kapt.include.compile.classpath=false
# Use R8 instead of ProGuard for code shrinking.
android.enableR8.fullMode=true
# Enable AndroidX
android.useAndroidX=true
# 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.
# TODO re-enable once fixed in AGP (https://issuetracker.google.com/issues/182198793)
#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
# Default Android build features
android.defaults.buildfeatures.buildconfig=false
android.defaults.buildfeatures.aidl=false
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false
android.library.defaults.buildfeatures.androidresources=false