summaryrefslogtreecommitdiff
path: root/gradle.properties
blob: d1ca41caf9d65a4fffb54e28a5efe2802f00a0d0 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# AndroidX
android.enableJetifier=true
android.useAndroidX=true

# R8 Full mode
android.enableR8.fullMode=true

# Disable warnings for experimental options
android.suppressUnsupportedOptionWarnings=android.suppressUnsupportedOptionWarnings,android.enableR8.fullMode,android.useMinimalKeepRules,android.namespacedRClass

# https://jakewharton.com/increased-accuracy-of-aapt2-keep-rules/
android.useMinimalKeepRules=true

# Enable rudimentary R class namespacing where each library only contains
# references to the resources it declares instead of declarations plus all
# transitive dependency references.
android.namespacedRClass=true