Mobile/settings.gradle

22 lines
396 B
Groovy
Raw Normal View History

2023-07-06 06:50:36 +00:00
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
2023-08-23 05:59:38 +00:00
maven {
url 'https://jitpack.io'
}
2023-07-06 06:50:36 +00:00
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
2023-08-23 05:59:38 +00:00
2023-07-06 06:50:36 +00:00
}
}
2023-11-03 07:10:09 +00:00
rootProject.name = "Rehabilitation"
2023-07-06 06:50:36 +00:00
include ':app'