mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
2b46c88bf3
Signed-off-by: denis0001-dev <denis0001.dev@ya.ru>
42 lines
1.0 KiB
Kotlin
42 lines
1.0 KiB
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
|
|
include(":utils:android")
|
|
|
|
|
|
rootProject.name = "FromChat"
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
mavenContent {
|
|
includeGroupAndSubgroups("androidx")
|
|
includeGroupAndSubgroups("com.android")
|
|
includeGroupAndSubgroups("com.google")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google {
|
|
mavenContent {
|
|
includeGroupAndSubgroups("androidx")
|
|
includeGroupAndSubgroups("com.android")
|
|
includeGroupAndSubgroups("com.google")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
// LiveKit Android pulls com.github.davidliu:audioswitch from JitPack.
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
include(":app:shared", ":utils:shared", ":app:android", ":app:desktop")
|
|
|