Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d676f27ee | ||
|
|
b913dacebf | ||
|
|
fb0d13dffb | ||
|
|
ec853d8bdc | ||
|
|
ef964c4531 | ||
|
|
956165c6c3 | ||
|
|
ff7a97347c |
@@ -180,7 +180,10 @@ dependencies {
|
|||||||
|
|
||||||
// Misc.
|
// Misc.
|
||||||
implementation Deps.Misc.LOTTIE
|
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
|
implementation Deps.Misc.Plugins.QR_SCANNER
|
||||||
|
|
||||||
// Tests
|
// Tests
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ object Deps {
|
|||||||
const val compileSdkVersion = 31
|
const val compileSdkVersion = 31
|
||||||
const val minSdkVersion = 21
|
const val minSdkVersion = 21
|
||||||
const val targetSdkVersion = 30
|
const val targetSdkVersion = 30
|
||||||
const val versionName = "1.0.1"
|
const val versionName = "1.0.4"
|
||||||
const val versionCode = 1_01_00 // last digits are alpha(0XX) beta(2XX) rc(4XX) release(8XX). Ex: 1_08_04_401 is an release candidate build of version 1.8.4 and 1_08_04_800 would be the final release.
|
const val versionCode = 1_04_00 // last digits are alpha(0XX) beta(2XX) rc(4XX) release(8XX). Ex: 1_08_04_401 is an release candidate build of version 1.8.4 and 1_08_04_800 would be the final release.
|
||||||
const val packageName = "dragonx.android"
|
const val packageName = "dragonx.android"
|
||||||
|
|
||||||
|
|
||||||
@@ -69,7 +69,7 @@ object Deps {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
object Zcash {
|
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"
|
const val KOTLIN_BIP39 = "cash.z.ecc.android:kotlin-bip39:1.0.4"
|
||||||
|
|
||||||
/* SDK uses mavenLocal build with DRGX customizations for now
|
/* SDK uses mavenLocal build with DRGX customizations for now
|
||||||
|
|||||||
@@ -10,7 +10,9 @@ import java.util.*
|
|||||||
import java.util.Locale.ENGLISH
|
import java.util.Locale.ENGLISH
|
||||||
|
|
||||||
class Mnemonics : MnemonicPlugin {
|
class Mnemonics : MnemonicPlugin {
|
||||||
|
/* Build fails for overrides nothing
|
||||||
override fun fullWordList(languageCode: String) = Mnemonics.getCachedWords(Locale.ENGLISH.language)
|
override fun fullWordList(languageCode: String) = Mnemonics.getCachedWords(Locale.ENGLISH.language)
|
||||||
|
*/
|
||||||
override fun nextEntropy(): ByteArray = WordCount.COUNT_24.toEntropy()
|
override fun nextEntropy(): ByteArray = WordCount.COUNT_24.toEntropy()
|
||||||
override fun nextMnemonic(): CharArray = MnemonicCode(WordCount.COUNT_24).chars
|
override fun nextMnemonic(): CharArray = MnemonicCode(WordCount.COUNT_24).chars
|
||||||
override fun nextMnemonic(entropy: ByteArray): CharArray = MnemonicCode(entropy).chars
|
override fun nextMnemonic(entropy: ByteArray): CharArray = MnemonicCode(entropy).chars
|
||||||
@@ -22,4 +24,4 @@ class Mnemonics : MnemonicPlugin {
|
|||||||
fun validate(mnemonic: CharArray) {
|
fun validate(mnemonic: CharArray) {
|
||||||
MnemonicCode(mnemonic).validate()
|
MnemonicCode(mnemonic).validate()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -17,7 +17,6 @@ dependencyResolutionManagement {
|
|||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven("https://jitpack.io")
|
maven("https://jitpack.io")
|
||||||
jcenter()
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// Uncomment to use a snapshot version of the SDK, e.g. when the SDK version ends in -SNAPSHOT
|
// 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