16 lines
508 B
Kotlin
16 lines
508 B
Kotlin
android {
|
|
namespace = "github.leavesczy.compose_chat"
|
|
}
|
|
|
|
dependencies {
|
|
implementationTest()
|
|
implementationCompose()
|
|
implementationCoil()
|
|
implementation(Dependencies.AppCompat.appcompat)
|
|
implementation(Dependencies.AppCompat.material)
|
|
implementation(Dependencies.Accompanist.systemUiController)
|
|
implementation(Dependencies.Components.coroutines)
|
|
implementation(Dependencies.Components.matisse)
|
|
implementation(project(":common"))
|
|
implementation(project(":proxy"))
|
|
} |