zcash-android-wallet/settings.gradle.kts

37 lines
895 B
Plaintext

pluginManagement {
repositories {
gradlePluginPortal()
}
plugins {
id("com.github.ben-manes.versions") version("0.39.0") apply(false)
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
jcenter()
}
}
rootProject.name="ecc-wallet"
include(":app")
include(":qrecycler")
include(":feedback")
include(":mnemonic")
include(":lockbox")
if (extra["IS_SDK_INCLUDED_BUILD"].toString().toBoolean()) {
// Currently assume the SDK is up one level with a hardcoded directory name
// If this becomes problematic, `IS_SDK_INCLUDED_BUILD` could be turned into a path
// instead.
includeBuild("../zcash-android-sdk") {
dependencySubstitution {
substitute(module("cash.z.ecc.android:zcash-android-sdk")).using(project(":sdk-lib"))
}
}
}