2022-08-19 20:30:27 +00:00
|
|
|
val pushCache: String by settings
|
2022-08-17 20:53:07 +00:00
|
|
|
|
2022-03-22 14:35:23 +00:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-22 18:47:38 +00:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-17 20:27:55 +00:00
|
|
|
buildCache {
|
|
|
|
remote<HttpBuildCache> {
|
|
|
|
url = uri("http://18.0.0.7:3071/cache/")
|
|
|
|
isAllowInsecureProtocol = true
|
|
|
|
isAllowUntrustedServer = true
|
|
|
|
isUseExpectContinue = true
|
2022-08-19 20:30:27 +00:00
|
|
|
isPush = (pushCache == "true")
|
2022-08-17 20:27:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-22 14:35:23 +00:00
|
|
|
rootProject.name = "ReaderForSelfossV2"
|
|
|
|
include(":androidApp")
|
|
|
|
include(":shared")
|