28 lines
558 B
Kotlin
28 lines
558 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "KnotMessenger"
|
|
include(":app")
|
|
include(":profiles")
|
|
include(":auth")
|
|
include(":navigation")
|
|
include(":chats")
|
|
include(":contacts")
|
|
include(":calls")
|
|
include(":stories")
|
|
include(":settings")
|
|
include(":core")
|