mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-07 21:37:02 +09:00
46 lines
No EOL
1.1 KiB
Groovy
46 lines
No EOL
1.1 KiB
Groovy
plugins {
|
|
id "com.android.library"
|
|
id "kotlin-android"
|
|
id "kotlin-kapt"
|
|
id "kotlinx-serialization"
|
|
id "com.squareup.wire"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation project(':data')
|
|
implementation project(':core-models')
|
|
|
|
implementation libs.kotlin
|
|
implementation libs.coroutinesAndroid
|
|
implementation libs.gson
|
|
implementation libs.lifecycleLiveData
|
|
implementation libs.kotlinxSerializationJson
|
|
|
|
implementation libs.room
|
|
implementation libs.roomKtx
|
|
implementation libs.dataStore
|
|
|
|
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
|
|
testImplementation libs.androidXTestCore
|
|
testImplementation libs.coroutineTesting
|
|
}
|
|
|
|
android {
|
|
namespace 'com.anytypeio.anytype.persistence'
|
|
}
|
|
|
|
wire {
|
|
protoPath { srcDir 'src/main/proto' }
|
|
kotlin {}
|
|
} |