mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-07 21:37:02 +09:00
24 lines
No EOL
575 B
Groovy
24 lines
No EOL
575 B
Groovy
plugins {
|
|
id "com.android.library"
|
|
id "kotlin-android"
|
|
id "kotlinx-serialization"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation libs.appcompat
|
|
implementation libs.kotlin
|
|
implementation libs.coroutinesAndroid
|
|
implementation libs.androidxCore
|
|
implementation libs.timber
|
|
implementation libs.kotlinxSerializationJson
|
|
|
|
testImplementation libs.junit
|
|
testImplementation libs.kotlinTest
|
|
testImplementation libs.robolectric
|
|
testImplementation libs.androidXTestCore
|
|
}
|
|
|
|
android {
|
|
namespace 'com.anytypeio.anytype.library_syntax_highlighter'
|
|
} |