Browse Source

Updated repository name and distribution.

Changed from 'android-bip39' to 'kotlin-bip39' because this can be used anywhere that Kotlin can be used.
master
Kevin Gorham 4 years ago
parent
commit
739deab7d0
No known key found for this signature in database GPG Key ID: CCA55602DF49FC38
  1. 8
      README.md
  2. 2
      buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt
  3. 16
      lib/build.gradle
  4. 2
      settings.gradle

8
README.md

@ -1,8 +1,8 @@
# kotlin-bip39
[![license](https://img.shields.io/github/license/zcash/android-bip39.svg?maxAge=2592000&style=plastic)](https://github.com/zcash/android-bip39/blob/master/LICENSE)
[![CircleCI](https://img.shields.io/circleci/build/github/zcash/android-bip39/master?style=plastic)](https://circleci.com/gh/zcash/android-bip39/tree/master)
[![license](https://img.shields.io/github/license/zcash/kotlin-bip39.svg?maxAge=2592000&style=plastic)](https://github.com/zcash/kotlin-bip39/blob/master/LICENSE)
[![CircleCI](https://img.shields.io/circleci/build/github/zcash/kotlin-bip39/master?style=plastic)](https://circleci.com/gh/zcash/kotlin-bip39/tree/master)
[![@gmale](https://img.shields.io/badge/contact-android@z.cash-5AA9E7.svg?style=plastic)](https://github.com/gmale)
![Bintray](https://img.shields.io/bintray/v/ecc-mobile/android-bip39/android-bip39?color=success&style=plastic)
![Bintray](https://img.shields.io/bintray/v/ecc-mobile/android/kotlin-bip39?color=success&style=plastic)
[![Keybase ZEC](https://img.shields.io/keybase/zec/kevinecc?logoColor=red&style=social)](https://keybase.io/kevinecc)
@ -30,7 +30,7 @@ Add dependencies (see bintray badge, above, for latest version number such as `1
```groovy
dependencies {
implementation "cash.z.ecc.android:android-bip39:${latestVersion}"
implementation "cash.z.ecc.android:kotlin-bip39:${latestVersion}"
}
repository {

2
buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt

@ -5,7 +5,7 @@ object Deps {
// `Deps.Kotlin.version` directly
const val kotlinVersion = "1.3.72"
const val group = "cash.z.ecc.android"
const val versionName = "1.0.0-beta07"
const val versionName = "1.0.0-beta08"
const val description = "A concise implementation of BIP-0039 in Kotlin for Android."
object Kotlin : Version(kotlinVersion) {

16
lib/build.gradle

@ -74,7 +74,7 @@ def pomConfig = {
}
scm {
url "https://github.com/zcash/android-bip39"
url "https://github.com/zcash/kotlin-bip39"
}
}
@ -99,14 +99,14 @@ publishing {
artifact sourcesJar
artifact docsJar
groupId Deps.group
artifactId "android-bip39"
artifactId "kotlin-bip39"
version Deps.versionName
pom.withXml {
def root = asNode()
root.appendNode('description', Deps.description)
root.appendNode('name', 'android-bip39')
root.appendNode('url', 'https://github.com/zcash/android-bip39')
root.appendNode('name', 'kotlin-bip39')
root.appendNode('url', 'https://github.com/zcash/kotlin-bip39')
root.children().last() + pomConfig
}
}
@ -119,15 +119,15 @@ bintray {
publications = ['Production']
override = true
pkg {
repo = 'android-bip39'
name = 'android-bip39'
repo = 'android'
name = 'kotlin-bip39'
description = Deps.description
publish = true
publicDownloadNumbers = true
userOrg = 'ecc-mobile'
licenses = ['MIT']
vcsUrl = 'https://github.com/zcash/android-bip39.git'
dryRun = false
vcsUrl = 'https://github.com/zcash/kotlin-bip39.git'
dryRun = true
version {
name = Deps.versionName
desc = Deps.description

2
settings.gradle

@ -1,2 +1,2 @@
rootProject.name = 'android-bip39'
rootProject.name = 'kotlin-bip39'
include ':lib'

Loading…
Cancel
Save