28 lines
672 B
Plaintext
28 lines
672 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
id("secant.android-build-conventions")
|
|
id("wtf.emulator.gradle")
|
|
id("secant.emulator-wtf-conventions")
|
|
}
|
|
|
|
android {
|
|
resourcePrefix = "co_electriccoin_zcash_"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.sdkExtLib)
|
|
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
|
|
androidTestImplementation(libs.bundles.androidx.test)
|
|
androidTestImplementation(libs.kotlin.test)
|
|
|
|
if (project.property("IS_USE_TEST_ORCHESTRATOR").toString().toBoolean()) {
|
|
androidTestUtil(libs.androidx.test.orchestrator) {
|
|
artifact {
|
|
type = "apk"
|
|
}
|
|
}
|
|
}
|
|
} |