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
|
||||
# org.gradle.parallel=true
|
||||
|
||||
VERSION_NAME=0.4.6-alpha1
|
||||
VERSION_NAME=0.4.6-alpha2
|
||||
VERSION_CODE=8
|
||||
GROUP=com.github.bilthon
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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/>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue