Version bump

This commit is contained in:
Nelson R. Perez 2017-09-25 22:11:41 -05:00
parent f5288afde9
commit 302194539e
3 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
group 'de.bitsharesmunich' group 'de.bitsharesmunich'
version '0.4.2-SNAPSHOT' version '0.4.3-SNAPSHOT'
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
apply from: 'maven-push.gradle' apply from: 'maven-push.gradle'
@ -21,8 +21,8 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 3 minSdkVersion 3
targetSdkVersion 24 targetSdkVersion 24
versionCode 4 versionCode 5
versionName "0.4.2" versionName "0.4.3"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.bitsharesmunich.graphenej" package="de.bitsharesmunich.graphenej"
android:versionCode="3" android:versionCode="5"
android:versionName="0.4.2" > android:versionName="0.4.3" >
<uses-sdk android:minSdkVersion="1" /> <uses-sdk android:minSdkVersion="1" />
<application/> <application/>

View file

@ -18,7 +18,7 @@ public class NodeConnectionTest {
private String BLOCK_PAY_DE = System.getenv("OPENLEDGER_EU"); private String BLOCK_PAY_DE = System.getenv("OPENLEDGER_EU");
private NodeConnection nodeConnection; private NodeConnection nodeConnection;
private TimerTask subscribeTask = new TimerTask() { private TimerTask scheduleTask = new TimerTask() {
@Override @Override
public void run() { public void run() {
System.out.println("Adding request here"); System.out.println("Adding request here");
@ -58,7 +58,7 @@ public class NodeConnectionTest {
nodeConnection.connect("", "", true, mErrorListener); nodeConnection.connect("", "", true, mErrorListener);
Timer timer = new Timer(); Timer timer = new Timer();
timer.schedule(subscribeTask, 5000); timer.schedule(scheduleTask, 5000);
timer.schedule(releaseTask, 30000); timer.schedule(releaseTask, 30000);
try{ try{