Update build version and changelog.

This commit is contained in:
Kevin Gorham 2020-11-24 00:58:14 -05:00
parent 920914dc36
commit d4d28ccf92
No known key found for this signature in database
GPG Key ID: CCA55602DF49FC38
3 changed files with 11 additions and 6 deletions

View File

@ -1,6 +1,11 @@
Change Log
==========
Version 1.2.1-beta02 *(2020-11-24)*
------------------------------------
- New: Improve birthday configuration and config functions.
- Fix: Broken layout in demo app transaction list.
Version 1.2.1-beta01 *(2020-11-19)*
------------------------------------
- New: Added latest checkpoints for testnet and mainnet.

View File

@ -6,8 +6,8 @@ object Deps {
const val kotlinVersion = "1.4.10"
const val group = "cash.z.ecc.android"
const val artifactName = "zcash-android-sdk"
const val versionName = "1.2.1-beta01"
const val versionCode = 1_02_01_201 // 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 versionName = "1.2.1-beta02"
const val versionCode = 1_02_01_202 // 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 description = "This lightweight SDK connects Android to Zcash. It welds together Rust and Kotlin in a minimal way, allowing third-party Android apps to send and receive shielded transactions easily, securely and privately."
const val githubUrl = "https://github.com/zcash/zcash-android-wallet-sdk"

View File

@ -7,7 +7,7 @@ apply plugin: 'androidx.navigation.safeargs'
android {
ndkVersion "21.1.6352462"
compileSdkVersion 29
buildToolsVersion "29.0.2"
buildToolsVersion "29.0.3"
viewBinding.enabled = true
defaultConfig {
applicationId "cash.z.ecc.android.sdk.demoapp"
@ -49,8 +49,8 @@ android {
dependencies {
// SDK
zcashmainnetImplementation 'cash.z.ecc.android:zcash-android-sdk-mainnet:1.1.0-beta10'
zcashtestnetImplementation 'cash.z.ecc.android:zcash-android-sdk-testnet:1.1.0-beta10'
zcashmainnetImplementation 'cash.z.ecc.android:zcash-android-sdk-mainnet:1.2.1-beta02'
zcashtestnetImplementation 'cash.z.ecc.android:zcash-android-sdk-testnet:1.2.1-beta02'
// sample mnemonic plugin
implementation 'com.github.zcash:zcash-android-wallet-plugins:1.0.1'
@ -58,7 +58,7 @@ dependencies {
// Android
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.1'
implementation "com.google.android.material:material:1.3.0-alpha03"