# event-notifications-destination-android-sdk
**Repository Path**: mirrors_ibm/event-notifications-destination-android-sdk
## Basic Information
- **Project Name**: event-notifications-destination-android-sdk
- **Description**: Android Destination SDK for IBM Cloud Event Notifications service
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-01-18
- **Last Updated**: 2025-11-23
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](https://travis-ci.com/IBM/event-notifications-destination-android-sdk)
# Android destination SDK for IBM Cloud Event Notifications service Version 0.3.0
Android destination client library to interact with various [IBM Cloud Event Notifications Service](https://cloud.ibm.com/apidocs?category=event-notifications).
## Table of Contents
- [Prerequisites](#prerequisites)
- [Installation](#installation)
* [Gradle](#gradle)
- [Using the SDK](#using-the-sdk)
- [Questions](#questions)
- [Issues](#issues)
- [Open source @ IBM](#open-source--ibm)
- [Contributing](#contributing)
- [License](#license)
## Overview
The IBM Cloud Event Notifications Service Android destination SDK allows developers to register for FCM destiantion of Event Notifications service in IBM cloud.
Service Name | Artifact Coordinates
--- | ---
[Event Notifications Service](https://cloud.ibm.com/apidocs/event-notifications) | com.ibm.cloud:eventnotifications-destination-android:0.3.0
## Prerequisites
[ibm-cloud-onboarding]: https://cloud.ibm.com/registration
* An [IBM Cloud][ibm-cloud-onboarding] account.
* An Event Notifications Instance
* An IAM API key to allow the SDK to access your account. Create one [here](https://cloud.ibm.com/iam/apikeys).
## Installation
The current version of this SDK is: 0.3.0
Each service's artifact coordinates are listed in the table above.
The project artifacts are published on the public [Maven Central](https://repo1.maven.org/maven2/)
artifact repository. This is the default public repository used by maven when searching for dependencies.
To use this repository within a gradle build, please see
[this link](https://docs.gradle.org/current/userguide/declaring_repositories.html).
To use the Event Notifications Android destination SDK, define a dependency that contains the artifact coordinates (group id, artifact id and version) for the service, like this:
### Gradle
```gradle
compile 'com.ibm.cloud:eventnotifications-destination-android:0.3.0'
```
## Using the SDK
SDK Methods to consume
- [Installation](#installation)
- [Initialize SDK](#initialize-sdk)
- [Include SDK with Gradle](#include-sdk-with-gradle)
- [Initialize SDK](#initialize-sdk)
- [Register for notifications](#register-for-notifications)
- [Receiving notifications](#receiving-notifications)
- [Unregistering from notifications](#unregistering-from-notifications)
- [Event Notifications destination tags subscriptions](#event-notifications-destination-tags-subscriptions)
- [Subscribe to tags](#subscribe-to-tags)
- [Retrieve subscribed tags](#retrieve-subscribed-tags)
- [Unsubscribe from tags](#unsubscribe-from-tags)
- [Notification options](#notification-options)
- [Adding custom DeviceId for registration](#adding-custom-deviceid-for-registration)
- [Sending Delivery Status for notifications](#sending-delivery-status-for-notifications)
## Installation
### Include SDK with Gradle
Configure the Module level `build.gradle` and Project level `build.gradle` files.
1. Add the following dependencies to your Project level `build.gradle` file.
```groovy
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
classpath 'com.google.gms:google-services:4.3.10'
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
```
2. Add SDK dependency to your Module level `build.gradle` file.
```groovy
dependencies {
........
implementation platform('com.google.firebase:firebase-bom:29.0.0')
implementation 'com.google.firebase:firebase-messaging'
implementation 'com.ibm.cloud:sdk-core:9.15.0'
implementation 'com.ibm.cloud:eventnotifications-destination-android:0.3.0'
.......
}
```
>**Note**: Use the latest build tools (API 33). The minimum support version of android SDK is Android 5.1(API Level 22).
3. Add the `Google Play services` dependency to your Module level `build.gradle` file at the end, after the `dependencies{.....}`:
```
apply plugin: 'com.google.gms.google-services'
```
4. Configure the `AndroidManifest.xml` file. Refer the [example here](https://github.com/IBM/event-notifications-destination-android-sdk/app/src/main/AndroidManifest.xml). Add the following permissions inside application's `AndroidManifest.xml` file.
```
```
5. Add the `Firebase Cloud Messaging (FCM)` intent service filters for the `REGISTRATION` event notifications:
```xml
```
6. Add the `google-services.json` in Android application module root directory. For more information on how to add this file, see [Setup the SDK on FCM](https://cloud.ibm.com/docs/services/mobilepush?topic=mobile-pushnotification-push_step_3#push_step_3_Android).
### Initialize SDK
Initialize the sdk to connect with your Event Notifications service instance.
```java
import com.ibm.cloud.eventnotifications.destination.android.ENPush;
String instanceGUID = ">";
String destinationID = "";
String apiKey = "";
ENPush enPush = ENPush.getInstance();
enPush.setCloudRegion(ENPush.REGION_US_SOUTH); // Set your region
enPush.initialize(getApplicationContext(),instanceGUID,destinationID, apiKey);
```
- region : Region of the Event Notifications Instance.
- `ENPush.REGION_US_SOUTH`
- `ENPush.REGION_UK`
- `ENPush.REGION_SYDNEY`
- `ENPush.REGION_FRANKFURT`
- `ENPush.REGION_MADRID`
- `ENPush.REGION_BNPP`
- `ENPush.REGION_OSAKA`
- `ENPush.REGION_TOKYO`
- `ENPush.REGION_TORONTO`
- `ENPush.REGION_SAO_PAULO`
- `ENPush.REGION_MONTREAL`
## Register for notifications
Use the `ENPush.registerDevice()` API to register the device with FCM destination in Event Notifications service.
The following options are supported:
- Register without userId:
```java
//Register Android devices
enPush.registerDevice(new ENPushResponseListener() {
@Override
public void onSuccess(String deviceId) {
//handle successful device registration here
}
@Override
public void onFailure(ENPushException ex) {
//handle failure in device registration here
}
});
```
- Register with UserId. For `userId` based notification, the register method will accept one more parameter - `userId`.
```java
// Register the device to Event Notifications
enPush.registerDeviceWithUserId("userId",new ENPushResponseListener() {
@Override
public void onSuccess(String deviceId) {
//handle successful device registration here
}
@Override
public void onFailure(ENPushException ex) {
//handle failure in device registration here
}
});
```
The userId is used to pass the unique userId value for registering for Event notifications.
### Receiving notifications
To recieve notification when app is in foreground, implement `onMessageReceived` of `FirebaseMessagingService`. Refer the [sample app](https://github.com/IBM/event-notifications-destination-android-sdk/tree/travis/app/src/main/java/com/ibm/cloud/app) for example usage.
### Unregistering from notifications
Use the following code snippets to un-register from Event Notifications.
```java
enPush.unregister(new ENPushResponseListener() {
@Override
public void onSuccess(String s) {
// Handle success
}
@Override
public void onFailure(ENPushException e) {
// Handle Failure
}
});
```
>**Note**: To unregister from the `UserId` based registration, you have to call the registration method. See the `Register without userId option` in [Register for notifications](#register-for-notifications).
## Event Notifications destination tags subscriptions
### Subscribe to tags
The `subscribe` API will subscribe the device for a given tag. After the device is subscribed to a particular tag, the device can receive notifications that are sent for that tag.
Add the following code snippet to your Android mobile application to subscribe to a list of tags.
```java
// Subscribe to the given tag
enPush.subscribe(tagName, new ENPushResponseListener() {
@Override
public void onSuccess(String arg) {
System.out.println("Succesfully Subscribed to: "+ arg);
}
@Override
public void onFailure(ENPushException ex) {
System.out.println("Error subscribing to Tag1.." + ex.getMessage());
}
});
```
### Retrieve subscribed tags
The `getSubscriptions` API will return the list of tags to which the device is subscribed. Use the following code snippets in the mobile application to get the subscription list.
```java
// Get a list of tags that to which the device is subscribed.
enPush.getSubscriptions(new ENPushResponseListener>() {
@Override
public void onSuccess(List tags) {
System.out.println("Subscribed tags are: "+tags);
}
@Override
public void onFailure(ENPushException ex) {
System.out.println("Error getting subscriptions.. " + ex.getMessage());
}
})
```
### Unsubscribe from tags
The `unsubscribeFromTags` API will remove the device subscription from the list tags. Use the following code snippets to allow your devices to get unsubscribe from a tag.
```java
// unsubscibe from the given tag ,that to which the device is subscribed.
push.unsubscribe(tagName, new ENPushResponseListener() {
@Override
public void onSuccess(String s) {
System.out.println("Successfully unsubscribed from tag . "+ tag);
}
@Override
public void onFailure(ENPushException e) {
System.out.println("Error while unsubscribing from tags. "+ e.getMessage());
}
});
```
## Notification options
### Adding custom DeviceId for registration
To send `DeviceId` use the `setDeviceId` method of `ENPushNotificationOptions` class.
```java
ENPushNotificationOptions options = new ENPushNotificationOptions();
options.setDeviceid("YOUR_DEVICE_ID");
```
>**Note**: Remember to keep custom DeviceId `unique` for each device.
### Sending Delivery Status for notifications
You can send notification status (SEEN/OPEN) back to Event Notifiation service, implement sendStatusEvent function to use this.
Based on when notification was received by intercepting the notification, you can send back SEEN and when its opened you can send back OPEN.
To use this function example is given below
For status open -
```java
ENPush.getInstance().sendStatusEvent("en_nid", ENStatus.OPEN, listener);
```
For status seen -
```java
ENPush.getInstance().sendStatusEvent("en_nid", ENStatus.SEEN, listener);
```
## Multidex support prior to Android 5.0
Versions of the platform prior to Android 5.0 (API level 21) use the Dalvik runtime for executing app code.
1. Add the following in your gradle file,
```groovy
android {
...
defaultConfig{
....
multiDexEnabled true
....
}
...
}
...
dependencies {
.....
compile 'com.android.support:multidex:1.0.1'
....
}
```
2. In the `manifest.xml` file add teh following,
A
```xml