-
Notifications
You must be signed in to change notification settings - Fork 9
/
gradle.properties
35 lines (28 loc) · 1.19 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
#
# Designed and developed by Duckie Team, 2022~2023
#
# Licensed under the MIT.
# Please see full license: https://github.com/duckie-team/quack-quack-android/blob/master/LICENSE
#
org.gradle.jvmargs=-Xmx4g -XX:+UseParallelGC
org.gradle.configureondemand=true
org.gradle.parallel=true
org.gradle.caching=true
# https://blog.gradle.org/introducing-file-system-watching
org.gradle.vfs.watch=true
# https://docs.gradle.org/7.6/userguide/configuration_cache.html
org.gradle.configuration-cache=true
kotlin.code.style=official
android.useAndroidX=true
android.jetifier.ignorelist=lint*,common
android.enableJetifier=true
android.enableResourceOptimizations=true
android.nonFinalResIds=false
# Disable buildFeatures flags by default
# https://speakerdeck.com/zacsweers/improve-build-times-in-less-time?slide=142
# https://developer.android.com/reference/tools/gradle-api/7.4/com/android/build/api/dsl/BuildFeatures
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false
android.defaults.databinding.addKtx=false
# https://developer.android.com/studio/releases/gradle-plugin#experimental_further_app_size_reductions
android.experimental.enableNewResourceShrinker.preciseShrinking=true