mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
22 lines
No EOL
787 B
Groovy
22 lines
No EOL
787 B
Groovy
plugins {
|
|
id "com.android.library"
|
|
id "kotlin-android"
|
|
id "kotlinx-serialization"
|
|
}
|
|
|
|
dependencies {
|
|
def applicationDependencies = rootProject.ext.mainApplication
|
|
def unitTestDependencies = rootProject.ext.unitTesting
|
|
|
|
implementation applicationDependencies.appcompat
|
|
implementation applicationDependencies.kotlin
|
|
implementation applicationDependencies.coroutinesAndroid
|
|
implementation libs.androidxCore
|
|
implementation applicationDependencies.timber
|
|
implementation applicationDependencies.kotlinxSerializationJson
|
|
|
|
testImplementation unitTestDependencies.junit
|
|
testImplementation unitTestDependencies.kotlinTest
|
|
testImplementation unitTestDependencies.robolectricLatest
|
|
testImplementation unitTestDependencies.androidXTestCore
|
|
} |