Merge pull request #134 from zcash/feature/explicitly-add-x86_64-support

Added explicit support for x86_64
This commit is contained in:
Kevin Gorham 2020-06-11 14:06:00 -04:00 committed by GitHub
commit 3959c389ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -193,6 +193,7 @@ cargo {
"arm",
"arm64",
"x86",
"x86_64"
]
profile = "release"
forceTargets = true

View File

@ -6,8 +6,8 @@ object Deps {
const val kotlinVersion = "1.3.72"
const val group = "cash.z.ecc.android"
const val artifactName = "zcash-android-wallet-sdk"
const val versionName = "1.1.0-beta01"
const val versionCode = 1_01_00_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.1.0-beta02"
const val versionCode = 1_01_00_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"