-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradle.properties
More file actions
39 lines (39 loc) · 1.21 KB
/
gradle.properties
File metadata and controls
39 lines (39 loc) · 1.21 KB
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
org.gradle.configureondemand=true
org.gradle.caching=true
org.gradle.parallel=true
org.gradle.jvmargs=-Xmx4g -XX:+UseParallelGC -Dkotlin.daemon.jvm.options\="-Xmx4g"
org.gradle.unsafe.configuration-cache=true
org.gradle.unsafe.configuration-cache-problems=warn
org.gradle.vfs.watch=true
org.gradle.welcome=never
# AndroidX
android.useAndroidX=true
android.nonTransitiveRClass=true
# Kapt
kapt.incremental.apt=true
kapt.include.compile.classpath=false
# Enable R8 full mode:
# https://developer.android.com/studio/build/shrink-code#full-mode
android.enableR8.fullMode=true
# Tune build features
android.defaults.buildfeatures.aidl=false
android.defaults.buildfeatures.buildconfig=false
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false
# Run 'aapt optimize' on resources to minimize their APK size impact.
android.enableResourceOptimizations=true
# Mute clearing artifacts warning
dependency.analysis.warnings.silent=true
# Kotlin code style
kotlin.code.style=official
# App common configuration
app.targetSdk=32
app.compileSdk=32
app.minSdk=26
# App namespace
app.namespace=com.example.playground
# App version
app.major=0
app.minor=0
app.patch=1