Fix build depedencies

This commit is contained in:
fekt
2024-11-18 17:52:51 +00:00
parent fb0d13dffb
commit b913dacebf
4 changed files with 8 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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()
}
}
}

View File

@@ -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