mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-07 21:37:02 +09:00
32 lines
No EOL
820 B
Groovy
32 lines
No EOL
820 B
Groovy
plugins {
|
|
id "com.android.library"
|
|
id "kotlin-android"
|
|
id "com.google.devtools.ksp"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation project(':core-models')
|
|
implementation project(':protocol')
|
|
implementation project(':data')
|
|
implementation project(':core-utils')
|
|
|
|
implementation libs.kotlin
|
|
implementation libs.timber
|
|
implementation libs.coroutinesAndroid
|
|
implementation libs.gsonWire
|
|
implementation libs.gson
|
|
implementation libs.javaxInject
|
|
implementation libs.middleware
|
|
|
|
testImplementation project(":test:utils")
|
|
testImplementation libs.junit
|
|
testImplementation libs.kotlinTest
|
|
testImplementation libs.mockitoKotlin
|
|
testImplementation libs.coroutineTesting
|
|
testImplementation libs.turbine
|
|
}
|
|
|
|
android {
|
|
namespace 'com.anytypeio.anytype.middleware'
|
|
} |