Version 0.4.6-alpha2
This commit is contained in:
parent
394ed4b3b0
commit
ab7f88d17c
5 changed files with 8 additions and 6 deletions
|
@ -17,7 +17,7 @@
|
||||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||||
# org.gradle.parallel=true
|
# org.gradle.parallel=true
|
||||||
|
|
||||||
VERSION_NAME=0.4.6-alpha1
|
VERSION_NAME=0.4.6-alpha2
|
||||||
VERSION_CODE=8
|
VERSION_CODE=8
|
||||||
GROUP=com.github.bilthon
|
GROUP=com.github.bilthon
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
group 'cy.agorise'
|
group 'cy.agorise'
|
||||||
version '0.4.6-alpha1'
|
version '0.4.6-alpha2'
|
||||||
|
|
||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
apply from: 'maven-push.gradle'
|
apply from: 'maven-push.gradle'
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="cy.agorise.graphenej"
|
package="cy.agorise.graphenej"
|
||||||
android:versionCode="8"
|
android:versionCode="8"
|
||||||
android:versionName="0.4.6-alpha1" >
|
android:versionName="0.4.6-alpha2" >
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="1" />
|
<uses-sdk android:minSdkVersion="1" />
|
||||||
<application/>
|
<application/>
|
||||||
|
|
|
@ -30,7 +30,7 @@ import cy.agorise.graphenej.models.WitnessResponse;
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class GetAccountBalances extends BaseGrapheneHandler {
|
public class GetAccountBalances extends BaseGrapheneHandler {
|
||||||
|
|
||||||
private UserAccount mUserAccount;
|
private UserAccount mUserAccount;
|
||||||
private List<Asset> mAssetList;
|
private List<Asset> mAssetList;
|
||||||
private boolean mOneTime;
|
private boolean mOneTime;
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
package cy.agorise.graphenej.errors;
|
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 class RepeatedRequestIdException extends Exception {
|
||||||
|
|
||||||
public RepeatedRequestIdException(String message){
|
public RepeatedRequestIdException(String message){
|
||||||
super(message);
|
super(message);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue