2021-11-12 04:09:30 -08:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
kotlin("android")
|
2022-06-13 11:06:23 -07:00
|
|
|
id("secant.android-build-conventions")
|
2022-05-17 07:06:56 -07:00
|
|
|
id("wtf.emulator.gradle")
|
2022-06-13 11:06:23 -07:00
|
|
|
id("secant.emulator-wtf-conventions")
|
2023-02-13 05:10:32 -08:00
|
|
|
id("secant.jacoco-conventions")
|
2021-11-12 04:09:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2022-09-19 05:24:19 -07:00
|
|
|
namespace = "cash.z.ecc.sdk.ext"
|
2021-11-12 04:09:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.kotlin.stdlib)
|
|
|
|
implementation(libs.kotlinx.coroutines.android)
|
|
|
|
implementation(libs.kotlinx.coroutines.core)
|
2022-07-13 00:16:05 -07:00
|
|
|
implementation(libs.kotlinx.datetime)
|
2022-03-01 05:11:23 -08:00
|
|
|
api(libs.zcash.sdk)
|
2023-02-17 03:05:23 -08:00
|
|
|
api(libs.zcash.sdk.incubator)
|
2022-03-01 05:11:23 -08:00
|
|
|
api(libs.zcash.bip39)
|
2024-10-17 03:13:19 -07:00
|
|
|
api(libs.zip321)
|
2021-11-12 04:09:30 -08:00
|
|
|
|
|
|
|
androidTestImplementation(libs.bundles.androidx.test)
|
2021-12-31 05:28:16 -08:00
|
|
|
androidTestImplementation(libs.kotlinx.coroutines.test)
|
2022-02-17 05:08:06 -08:00
|
|
|
androidTestImplementation(libs.kotlin.test)
|
2021-11-12 04:09:30 -08:00
|
|
|
|
2023-01-17 11:54:40 -08:00
|
|
|
androidTestUtil(libs.androidx.test.services) {
|
|
|
|
artifact {
|
|
|
|
type = "apk"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 04:09:30 -08:00
|
|
|
if (project.property("IS_USE_TEST_ORCHESTRATOR").toString().toBoolean()) {
|
|
|
|
androidTestUtil(libs.androidx.test.orchestrator) {
|
|
|
|
artifact {
|
|
|
|
type = "apk"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|