Flocon/FloconAndroid/settings.gradle.kts
Florent CHAMPIGNY 25f77ed27f
Feat ktor no op (#379)
Co-authored-by: Florent Champigny <florent@bere.al>
2025-10-25 13:43:21 +02:00

29 lines
715 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
}
}
rootProject.name = "My Application"
include(":sample-android-only")
include(":sample-multiplatform")
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")
include(":ktor-interceptor-no-op")