ReaderForSelfoss-multiplatform/settings.gradle.kts
2022-08-23 22:45:19 +02:00

23 lines
458 B
Plaintext

val pushCache = true
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
}
buildCache {
remote<HttpBuildCache> {
url = uri("http://18.0.0.7:3071/cache/")
isAllowInsecureProtocol = true
isAllowUntrustedServer = true
isUseExpectContinue = true
isPush = pushCache
}
}
rootProject.name = "ReaderForSelfossV2"
include(":androidApp")
include(":shared")