Flocon/FloconAndroid/settings.gradle.kts
Florent CHAMPIGNY c2887551d2
Feat okhttp no op (#280)
Co-authored-by: Florent Champigny <florent@bere.al>
2025-09-30 16:52:19 +02:00

27 lines
631 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
}
}
rootProject.name = "My Application"
include(":app")
include(":flocon-base")
include(":flocon")
include(":flocon-no-op")
include(":okhttp-interceptor")
include(":okhttp-interceptor-no-op")
include(":grpc:grpc-interceptor")
include(":grpc:grpc-interceptor-base")
include(":grpc:grpc-interceptor-lite")
include(":ktor-interceptor")