1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-649 Tech | Enhancement | Get rid of dependencies.gradle (#2778)

This commit is contained in:
Mikhail 2022-12-25 20:53:47 +03:00 committed by GitHub
parent 184305bc2c
commit 802e686b0a
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 291 additions and 379 deletions

View file

@ -5,18 +5,16 @@ plugins {
}
dependencies {
def applicationDependencies = rootProject.ext.mainApplication
def unitTestDependencies = rootProject.ext.unitTesting
implementation libs.appcompat
implementation libs.kotlin
implementation applicationDependencies.coroutinesAndroid
implementation libs.coroutinesAndroid
implementation libs.androidxCore
implementation applicationDependencies.timber
implementation libs.timber
implementation libs.kotlinxSerializationJson
testImplementation libs.junit
testImplementation libs.kotlinTest
testImplementation unitTestDependencies.robolectricLatest
testImplementation unitTestDependencies.androidXTestCore
testImplementation libs.robolectric
testImplementation libs.androidXTestCore
}