Flocon/FloconAndroid/settings.gradle.kts
Florent CHAMPIGNY ce4c8f5a0a
feat: datastores (#392)
Co-authored-by: Florent Champigny <florent@bere.al>
2025-11-18 21:01:13 +01:00

31 lines
767 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")
include(":datastores")
include(":datastores-no-op")