blob: 46d8128d83a4cd270ae155f4ef2b2131ad2b7c74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
plugins {
alias(libs.plugins.android.library)
}
android {
namespace = "org.the_jk.cleversync.local"
}
dependencies {
implementation(project(":libs:io"))
testImplementation(project(":libs:utils"))
}
|