6c1e41ba10
* release: move scripts to scripts directory Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * Move CI secrets to secrets directory Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * gradle: uprev to 6.7 Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * gradle: suppress warnings about unsupported options Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: update dependencies Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: move Gradle plugins to ext Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * build: move configuration tasks to buildSrc Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * CHANGELOG: add entry for #1137 Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * Fix lint warnings Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
53 lines
1.7 KiB
Properties
53 lines
1.7 KiB
Properties
#
|
|
# Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
org.gradle.parallel=true
|
|
org.gradle.configureondemand=true
|
|
org.gradle.caching=true
|
|
|
|
# Enabling filesystem watching
|
|
org.gradle.vfs.watch=true
|
|
|
|
# Enable Kotlin incremental compilation
|
|
kotlin.incremental=true
|
|
|
|
# Enable parallel tasks execution for Kotlin Gradle plugin
|
|
kotlin.parallel.tasks.in.project=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
|
|
|
|
# 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
|
|
|
|
# Disable warnings about unsupported features, we know what we're doing
|
|
android.suppressUnsupportedOptionWarnings=android.enableR8.fullMode,android.enableResourceOptimizations,android.nonTransitiveRClass,android.suppressUnsupportedOptionWarnings
|