ReaderForSelfoss-multiplatform/settings.gradle.kts

29 lines
444 B
Plaintext
Raw Normal View History

2022-03-22 14:35:23 +00:00
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
2022-03-22 14:35:23 +00:00
}
}
2022-10-22 18:47:38 +00:00
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
2022-10-22 18:47:38 +00:00
}
}
2024-12-22 20:05:47 +00:00
buildCache {
local {
directory = File(rootDir, "build-cache")
}
remote<HttpBuildCache> {
isEnabled = false
}
}
2022-03-22 14:35:23 +00:00
rootProject.name = "ReaderForSelfossV2"
include(":androidApp")
include(":shared")