mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-10 10:00:44 +09:00
31 lines
No EOL
735 B
Groovy
31 lines
No EOL
735 B
Groovy
plugins {
|
|
id "com.android.library"
|
|
id "kotlin-android"
|
|
id "kotlin-kapt"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation project(':data')
|
|
implementation project(':core-models')
|
|
|
|
implementation libs.kotlin
|
|
implementation libs.coroutinesAndroid
|
|
implementation libs.gson
|
|
implementation libs.lifecycleLiveData
|
|
|
|
implementation libs.room
|
|
implementation libs.roomKtx
|
|
|
|
kapt libs.annotations
|
|
|
|
implementation libs.timber
|
|
|
|
testImplementation project(":test:utils")
|
|
testImplementation libs.roomTesting
|
|
testImplementation libs.junit
|
|
testImplementation libs.kotlinTest
|
|
testImplementation libs.mockitoKotlin
|
|
testImplementation libs.robolectric
|
|
testImplementation libs.archCoreTesting
|
|
} |