Flocon/FloconAndroid/settings.gradle.kts
Florent CHAMPIGNY cf1f96bc3c
feat: graphql (#14)
Co-authored-by: Florent Champigny <florent@bere.al>
2025-07-31 23:09:40 +02:00

21 lines
442 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "My Application"
include(":app")
include(":core")
include(":okhttp-interceptor")
include(":grpc-interceptor")
include(":graphql-interceptor")