From aa5bfe7a15b94fae7769cb023fdaf48bd236a766 Mon Sep 17 00:00:00 2001 From: Rafael Muhamedzyanov Date: Thu, 4 Jul 2019 16:44:05 +0600 Subject: [PATCH] Fix Bitcoincore crash on disconnect (#1005) --- app/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 87a8f62e9e1..53c86550c47 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,7 +11,7 @@ androidExtensions { } def computeVersionCode() { - ext.buildNumber = System.getenv("BUILD_NUMBER") ?: 11 + ext.buildNumber = System.getenv("BUILD_NUMBER") ?: 14 return "$buildNumber".toInteger() } @@ -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") @@ -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'