ReadYou/settings.gradle.kts

20 lines
376 B
Plaintext
Raw Normal View History

2022-03-01 18:40:53 +01:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
2022-03-01 18:40:53 +01:00
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
2022-03-01 18:40:53 +01:00
}
}
2022-03-01 18:40:53 +01:00
rootProject.name = "Reader"
include(":app")