Fix build depedencies
This commit is contained in:
@@ -180,7 +180,10 @@ dependencies {
|
||||
|
||||
// Misc.
|
||||
implementation Deps.Misc.LOTTIE
|
||||
implementation Deps.Misc.CHIPS
|
||||
implementation Deps.Misc.CHIPS, {
|
||||
exclude module: 'ChipsLayoutManager'
|
||||
}
|
||||
implementation 'com.github.BelooS:ChipsLayoutManager:v0.3.7'
|
||||
implementation Deps.Misc.Plugins.QR_SCANNER
|
||||
|
||||
// Tests
|
||||
|
||||
@@ -69,7 +69,7 @@ object Deps {
|
||||
}
|
||||
}
|
||||
object Zcash {
|
||||
const val ANDROID_WALLET_PLUGINS = "cash.z.ecc.android:zcash-android-wallet-plugins:1.0.0"
|
||||
const val ANDROID_WALLET_PLUGINS = "com.github.zcash:zcash-android-wallet-plugins:1.0.0"
|
||||
const val KOTLIN_BIP39 = "cash.z.ecc.android:kotlin-bip39:1.0.4"
|
||||
|
||||
/* SDK uses mavenLocal build with DRGX customizations for now
|
||||
|
||||
@@ -10,7 +10,9 @@ import java.util.*
|
||||
import java.util.Locale.ENGLISH
|
||||
|
||||
class Mnemonics : MnemonicPlugin {
|
||||
/* Build fails for overrides nothing
|
||||
override fun fullWordList(languageCode: String) = Mnemonics.getCachedWords(Locale.ENGLISH.language)
|
||||
*/
|
||||
override fun nextEntropy(): ByteArray = WordCount.COUNT_24.toEntropy()
|
||||
override fun nextMnemonic(): CharArray = MnemonicCode(WordCount.COUNT_24).chars
|
||||
override fun nextMnemonic(entropy: ByteArray): CharArray = MnemonicCode(entropy).chars
|
||||
@@ -22,4 +24,4 @@ class Mnemonics : MnemonicPlugin {
|
||||
fun validate(mnemonic: CharArray) {
|
||||
MnemonicCode(mnemonic).validate()
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -17,7 +17,6 @@ dependencyResolutionManagement {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven("https://jitpack.io")
|
||||
jcenter()
|
||||
|
||||
/*
|
||||
// Uncomment to use a snapshot version of the SDK, e.g. when the SDK version ends in -SNAPSHOT
|
||||
|
||||
Reference in New Issue
Block a user