Version 0.4.6-alpha2

develop
Nelson R. Perez 2017-11-16 10:38:49 -05:00
parent 394ed4b3b0
commit ab7f88d17c
5 changed files with 8 additions and 6 deletions

View File

@ -17,7 +17,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
VERSION_NAME=0.4.6-alpha1
VERSION_NAME=0.4.6-alpha2
VERSION_CODE=8
GROUP=com.github.bilthon

View File

@ -1,5 +1,5 @@
group 'cy.agorise'
version '0.4.6-alpha1'
version '0.4.6-alpha2'
apply plugin: 'com.android.library'
apply from: 'maven-push.gradle'

View File

@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cy.agorise.graphenej"
android:versionCode="8"
android:versionName="0.4.6-alpha1" >
android:versionName="0.4.6-alpha2" >
<uses-sdk android:minSdkVersion="1" />
<application/>

View File

@ -30,7 +30,7 @@ import cy.agorise.graphenej.models.WitnessResponse;
*
*/
public class GetAccountBalances extends BaseGrapheneHandler {
private UserAccount mUserAccount;
private List<Asset> mAssetList;
private boolean mOneTime;

View File

@ -1,11 +1,13 @@
package cy.agorise.graphenej.errors;
import cy.agorise.graphenej.api.BaseGrapheneHandler;
/**
* Created by nelson on 6/27/17.
* Thrown by the {@link cy.agorise.graphenej.api.SubscriptionMessagesHub#addRequestHandler(BaseGrapheneHandler)}
* whenever the user tries to register a new handler with a previously registered id
*/
public class RepeatedRequestIdException extends Exception {
public RepeatedRequestIdException(String message){
super(message);
}