v1.9.0-beta01 changes
This commit includes HUSH specific changes starting at v.1.9.0-beta01 release here: https://github.com/zcash/zcash-android-wallet-sdk/releases/tag/v1.9.0-beta01
This commit is contained in:
@@ -6,12 +6,34 @@ plugins {
|
||||
|
||||
buildscript {
|
||||
dependencyLocking {
|
||||
lockAllConfigurations()
|
||||
// This property is treated specially, as it is not defined by default in the root gradle.properties
|
||||
// and declaring it in the root gradle.properties is ignored by included builds. This only picks up
|
||||
// a value declared as a system property, a command line argument, or a an environment variable.
|
||||
val isDependencyLockingEnabled = if (project.hasProperty("ZCASH_IS_DEPENDENCY_LOCKING_ENABLED")) {
|
||||
project.property("ZCASH_IS_DEPENDENCY_LOCKING_ENABLED").toString().toBoolean()
|
||||
} else {
|
||||
true
|
||||
}
|
||||
|
||||
if (isDependencyLockingEnabled) {
|
||||
lockAllConfigurations()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencyLocking {
|
||||
lockAllConfigurations()
|
||||
// This property is treated specially, as it is not defined by default in the root gradle.properties
|
||||
// and declaring it in the root gradle.properties is ignored by included builds. This only picks up
|
||||
// a value declared as a system property, a command line argument, or a an environment variable.
|
||||
val isDependencyLockingEnabled = if (project.hasProperty("ZCASH_IS_DEPENDENCY_LOCKING_ENABLED")) {
|
||||
project.property("ZCASH_IS_DEPENDENCY_LOCKING_ENABLED").toString().toBoolean()
|
||||
} else {
|
||||
true
|
||||
}
|
||||
|
||||
if (isDependencyLockingEnabled) {
|
||||
lockAllConfigurations()
|
||||
}
|
||||
}
|
||||
|
||||
// Per conversation in the KotlinLang Slack, Gradle uses Java 8 compatibility internally
|
||||
|
||||
Reference in New Issue
Block a user