Droid-ify-client/settings.gradle.kts

19 lines
319 B
Plaintext
Raw Normal View History

2022-07-06 02:01:27 +05:30
pluginManagement {
repositories {
google()
mavenCentral()
2023-09-06 11:26:49 +05:30
gradlePluginPortal()
2022-07-06 02:01:27 +05:30
}
}
2022-07-06 01:18:38 +05:30
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
rootProject.name = "Droid-ify"
2025-01-22 23:52:23 +05:30
include(":app")