summaryrefslogtreecommitdiff
path: root/libs/io/build.gradle.kts
blob: bb0f0621972acbe5da93fc6c60d34ab551b7a40d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
plugins {
    alias(libs.plugins.android.library)
}

android {
    namespace = "org.the_jk.cleversync.io"
}

dependencies {
    api(libs.androidx.livedata)
    api(libs.androidx.livedata.ktx)
    implementation(project(":libs:utils"))
    testImplementation(project(":libs:local"))
    testImplementation(project(":libs:test-utils"))
}