Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated Apr 29, 2024

Listen to auth events

AWS Cognito Auth Plugin sends important events through Amplify Hub.

Amplify Android v1 is deprecated as of June 1st, 2024. No new features or bug fixes will be added. Dependencies may become outdated and potentially introduce compatibility issues.

Please use the latest version (v2) of Amplify Library for Android to get started. Refer to the upgrade guide for instructions on upgrading your application to the latest version.

Amplify libraries should be used for all new cloud connected applications. If you are currently using the AWS Mobile SDK for Android, you can access the documentation here.

Amplify.Hub.subscribe(HubChannel.AUTH,
hubEvent -> {
if (hubEvent.getName().equals(InitializationStatus.SUCCEEDED.toString())) {
Log.i("AuthQuickstart", "Auth successfully initialized");
} else if (hubEvent.getName().equals(InitializationStatus.FAILED.toString())){
Log.i("AuthQuickstart", "Auth failed to succeed");
} else {
switch (AuthChannelEventName.valueOf(hubEvent.getName())) {
case SIGNED_IN:
Log.i("AuthQuickstart", "Auth just became signed in.");
break;
case SIGNED_OUT:
Log.i("AuthQuickstart", "Auth just became signed out.");
break;
case SESSION_EXPIRED:
Log.i("AuthQuickstart", "Auth session just expired.");
break;
case USER_DELETED:
Log.i("AuthQuickstart", "User has been deleted.");
break;
default:
Log.w("AuthQuickstart", "Unhandled Auth Event: " + AuthChannelEventName.valueOf(hubEvent.getName()));
break;
}
}
}
);
Amplify.Hub.subscribe(HubChannel.AUTH) { event ->
when (event.name) {
InitializationStatus.SUCCEEDED.toString() ->
Log.i("AuthQuickstart", "Auth successfully initialized")
InitializationStatus.FAILED.toString() ->
Log.i("AuthQuickstart", "Auth failed to succeed")
else -> when (AuthChannelEventName.valueOf(event.name)) {
AuthChannelEventName.SIGNED_IN ->
Log.i("AuthQuickstart", "Auth just became signed in")
AuthChannelEventName.SIGNED_OUT ->
Log.i("AuthQuickstart", "Auth just became signed out")
AuthChannelEventName.SESSION_EXPIRED ->
Log.i("AuthQuickstart", "Auth session just expired")
AuthChannelEventName.USER_DELETED ->
Log.i("AuthQuickstart", "User has been deleted")
else ->
Log.w("AuthQuickstart", "Unhandled Auth Event: ${event.name}")
}
}
}
Amplify.Hub.subscribe(HubChannel.AUTH).collect {
when (it.name) {
InitializationStatus.SUCCEEDED.toString() ->
Log.i("AuthQuickstart", "Auth successfully initialized")
InitializationStatus.FAILED.toString() ->
Log.i("AuthQuickstart", "Auth failed to succeed")
else -> when (AuthChannelEventName.valueOf(it.name)) {
AuthChannelEventName.SIGNED_IN ->
Log.i("AuthQuickstart", "Auth just became signed in.")
AuthChannelEventName.SIGNED_OUT ->
Log.i("AuthQuickstart", "Auth just became signed out.")
AuthChannelEventName.SESSION_EXPIRED ->
Log.i("AuthQuickstart", "Auth session just expired.")
AuthChannelEventName.USER_DELETED ->
Log.i("AuthQuickstart", "User has been deleted.")
}
}
}
RxAmplify.Hub.on(HubChannel.AUTH)
.map(HubEvent::getName)
.subscribe(name -> {
if (name.equals(InitializationStatus.SUCCEEDED.toString())) {
Log.i("AuthQuickstart", "Auth successfully initialized");
return;
} else if (name.equals(InitializationStatus.FAILED.toString())) {
Log.i("AuthQuickstart", "Auth failed to succeed");
return;
}
switch (AuthChannelEventName.valueOf(name)) {
case SIGNED_IN:
Log.i("AuthQuickstart", "Auth just became signed in.");
break;
case SIGNED_OUT:
Log.i("AuthQuickstart", "Auth just became signed out.");
break;
case SESSION_EXPIRED:
Log.i("AuthQuickstart", "Auth session just expired.");
break;
case USER_DELETED:
Log.i("AuthQuickstart", "User has been deleted.");
break;
default:
Log.w("AuthQuickstart", "Unhandled Auth Event: " + AuthChannelEventName.valueOf(name));
break;
}
});