Added build cache.

This commit is contained in:
aminecmi 2022-08-17 22:27:55 +02:00
parent 0caeb94e64
commit 255fbcb12f
2 changed files with 12 additions and 0 deletions

View File

@ -19,4 +19,5 @@ android.useAndroidX=true
android.enableJetifier=true
kotlin.mpp.enableGranularSourceSetsMetadata=true
org.gradle.parallel=true
org.gradle.caching=true
ignoreGitVersion=false

View File

@ -6,6 +6,17 @@ pluginManagement {
}
}
buildCache {
remote<HttpBuildCache> {
url = uri("http://18.0.0.7:3071/cache/")
isAllowInsecureProtocol = true
isAllowUntrustedServer = true
isUseExpectContinue = true
}
}
rootProject.name = "ReaderForSelfossV2"
include(":androidApp")
include(":shared")