ReaderForSelfoss-multiplatform/settings.gradle.kts

22 lines
411 B
Plaintext
Raw Normal View History

2022-03-22 14:35:23 +00:00
pluginManagement {
repositories {
google()
gradlePluginPortal()
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-03-22 14:35:23 +00:00
rootProject.name = "ReaderForSelfossV2"
include(":androidApp")
include(":shared")