2020-07-14 08:01:37 +02:00
|
|
|
#
|
2021-03-09 10:15:27 +01:00
|
|
|
# Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2020-07-14 08:01:37 +02:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#
|
2020-09-20 19:13:31 +02:00
|
|
|
org.gradle.parallel=true
|
2021-12-21 13:26:20 +01:00
|
|
|
org.gradle.configureondemand=false
|
2020-09-20 19:13:31 +02:00
|
|
|
org.gradle.caching=true
|
2020-07-14 08:01:37 +02:00
|
|
|
|
2021-11-15 18:51:57 +01:00
|
|
|
# Enable filesystem watching
|
2020-09-20 19:13:31 +02:00
|
|
|
org.gradle.vfs.watch=true
|
2019-10-13 08:06:19 +02:00
|
|
|
|
2022-02-17 05:43:04 +01:00
|
|
|
# Enable experimental configuration caching
|
2023-03-29 11:41:46 +02:00
|
|
|
org.gradle.configuration-cache=true
|
2022-02-17 05:43:04 +01:00
|
|
|
|
2020-09-20 19:13:31 +02:00
|
|
|
# Enable Kotlin incremental compilation
|
|
|
|
kotlin.incremental=true
|
2019-10-13 08:06:19 +02:00
|
|
|
|
2020-09-20 19:13:31 +02:00
|
|
|
# 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
|
|
|
|
|
2022-06-10 19:57:56 +02:00
|
|
|
# New incremental compilation for Kotlin
|
2023-04-10 12:30:07 +02:00
|
|
|
kotlin.compiler.preciseCompilationResultsBackup=true
|
2022-06-10 19:57:56 +02:00
|
|
|
kotlin.build.report.output=file
|
2023-07-06 09:02:48 +02:00
|
|
|
kotlin.compiler.suppressExperimentalICOptimizationsWarning=true
|
2022-06-10 19:57:56 +02:00
|
|
|
|
2023-06-30 22:35:05 +02:00
|
|
|
# Make all Kotlin DSL warnings fail build
|
|
|
|
org.gradle.kotlin.dsl.allWarningsAsErrors=true
|
|
|
|
|
2020-09-20 19:13:31 +02:00
|
|
|
# Enable AndroidX
|
|
|
|
android.useAndroidX=true
|
2019-10-13 08:06:19 +02:00
|
|
|
|
2023-05-19 18:03:37 +02:00
|
|
|
# Disable mostly unused default Android build features
|
2020-09-20 19:13:31 +02:00
|
|
|
android.defaults.buildfeatures.resvalues=false
|
|
|
|
android.defaults.buildfeatures.shaders=false
|
2023-05-19 18:03:37 +02:00
|
|
|
android.library.defaults.buildfeatures.androidresources=false
|
|
|
|
|
|
|
|
# Disallow resolution of dependencies at configuration time
|
|
|
|
android.dependencyResolutionAtConfigurationTime.disallow=true
|
|
|
|
|
|
|
|
# Disallow parsing the manifest too early in the build process
|
|
|
|
android.disableEarlyManifestParsing=true
|
2020-10-16 17:18:11 +02:00
|
|
|
|
2023-05-19 18:03:37 +02:00
|
|
|
# Disable warnings about unsupported features
|
|
|
|
android.suppressUnsupportedOptionWarnings=android.dependencyResolutionAtConfigurationTime.disallow,android.disableEarlyManifestParsing,android.suppressUnsupportedOptionWarnings
|
2021-02-06 13:04:17 +01:00
|
|
|
|
|
|
|
# Maven publishing
|
|
|
|
GROUP=com.github.android-password-store
|
|
|
|
|
|
|
|
# OSSRH sometimes struggles with slow deployments, so this makes Gradle
|
|
|
|
# more tolerant to those delays.
|
2023-03-03 19:21:02 +01:00
|
|
|
SONATYPE_CONNECT_TIMEOUT_SECONDS=120
|
|
|
|
SONATYPE_CLOSE_TIMEOUT_SECONDS=1800
|
2021-11-10 04:21:11 +01:00
|
|
|
|
2023-11-26 21:52:13 +01:00
|
|
|
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|