Skip to content

Commit

Permalink
Fix Bitcoincore crash on disconnect (#1005)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelekol committed Jul 4, 2019
1 parent 01f9bac commit aa5bfe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ androidExtensions {
}

def computeVersionCode() {
ext.buildNumber = System.getenv("BUILD_NUMBER") ?: 11
ext.buildNumber = System.getenv("BUILD_NUMBER") ?: 14
return "$buildNumber".toInteger()
}

Expand All @@ -22,7 +22,7 @@ android {
minSdkVersion 23
targetSdkVersion 28
versionCode computeVersionCode()
versionName "0.6.2"
versionName "0.6.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

resValue "string", "localizations", buildProperties.get("localizations")
Expand Down Expand Up @@ -133,7 +133,7 @@ dependencies {
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.2'

// BitcoinKit
implementation 'com.github.horizontalsystems:bitcoin-kit-android:0.4.1'
implementation 'com.github.horizontalsystems:bitcoin-kit-android:15d9723'

// EthereumKit
implementation 'com.github.horizontalsystems:ethereum-kit-android:055850e'
Expand Down

0 comments on commit aa5bfe7

Please sign in to comment.