1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-07 21:37:02 +09:00
anytype-kotlin/device/build.gradle

28 lines
No EOL
595 B
Groovy

plugins {
id "com.android.library"
id "kotlin-android"
}
dependencies {
implementation project(':data')
implementation project(':domain')
implementation project(':localization')
implementation libs.kotlin
implementation libs.coroutinesAndroid
implementation libs.androidxCore
implementation libs.timber
testImplementation libs.junit
testImplementation libs.kotlinTest
testImplementation libs.androidXTestCore
testImplementation libs.robolectric
compileOnly libs.javaxInject
}
android {
namespace 'com.anytypeio.anytype.device'
}