Update the only dependency: Kotlin.

This commit is contained in:
Kevin Gorham 2020-09-19 03:42:37 -04:00
parent 7f60fb656e
commit 8bbb0ffedb
No known key found for this signature in database
GPG Key ID: CCA55602DF49FC38
2 changed files with 4 additions and 4 deletions

View File

@ -3,10 +3,10 @@ package cash.z.ecc.android
object Deps { object Deps {
// For use in the top-level build.gradle which gives an error when provided // For use in the top-level build.gradle which gives an error when provided
// `Deps.Kotlin.version` directly // `Deps.Kotlin.version` directly
const val kotlinVersion = "1.3.72" const val kotlinVersion = "1.4.10"
const val group = "cash.z.ecc.android" const val group = "cash.z.ecc.android"
const val artifactName = "kotlin-bip39" const val artifactName = "kotlin-bip39"
const val versionName = "1.0.0-beta09" const val versionName = "1.0.1"
const val description = "A concise implementation of BIP-0039 in Kotlin for Android." const val description = "A concise implementation of BIP-0039 in Kotlin for Android."
const val githubUrl = "https://github.com/zcash/kotlin-bip39" const val githubUrl = "https://github.com/zcash/kotlin-bip39"
const val publishingActive = false // set to true to activate bintrayUpload task const val publishingActive = false // set to true to activate bintrayUpload task

View File

@ -65,8 +65,8 @@ publishing {
} }
bintray { bintray {
user = project.hasProperty('bintrayUser') ?: System.getenv('BINTRAY_USER') user = project.findProperty('bintrayUser') ?: System.getenv('BINTRAY_USER')
key = project.hasProperty('bintrayApiKey') ?: System.getenv('BINTRAY_API_KEY') key = project.findProperty('bintrayApiKey') ?: System.getenv('BINTRAY_API_KEY')
publications = ['Production'] publications = ['Production']
override = true override = true
pkg { pkg {