Liferay Push


License

License

GroupId

GroupId

com.liferay.mobile
ArtifactId

ArtifactId

liferay-push
Last Version

Last Version

2.0.0
Release Date

Release Date

Type

Type

aar
Description

Description

Liferay Push
Liferay Push
Project URL

Project URL

https://github.com/liferay-mobile/liferay-push-android
Source Code Management

Source Code Management

https://github.com/liferay-mobile/liferay-push-android.git

Download liferay-push

How to add to project

<!-- https://jarcasting.com/artifacts/com.liferay.mobile/liferay-push/ -->
<dependency>
    <groupId>com.liferay.mobile</groupId>
    <artifactId>liferay-push</artifactId>
    <version>2.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.liferay.mobile/liferay-push/
implementation 'com.liferay.mobile:liferay-push:2.0.0'
// https://jarcasting.com/artifacts/com.liferay.mobile/liferay-push/
implementation ("com.liferay.mobile:liferay-push:2.0.0")
'com.liferay.mobile:liferay-push:aar:2.0.0'
<dependency org="com.liferay.mobile" name="liferay-push" rev="2.0.0">
  <artifact name="liferay-push" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.liferay.mobile', module='liferay-push', version='2.0.0')
)
libraryDependencies += "com.liferay.mobile" % "liferay-push" % "2.0.0"
[com.liferay.mobile/liferay-push "2.0.0"]

Dependencies

compile (4)

Group / Artifact Type Version
com.google.firebase » firebase-messaging jar 20.3.0
com.liferay.mobile : liferay-android-sdk-core jar 7.1.3
com.squareup : otto jar 1.3.8
androidx.legacy » legacy-support-core-utils jar 1.0.0

Project Modules

There are no modules declared in this project.

Liferay Mobile SDK logo

Liferay Push for Android

Build Status Coverage Status

Setup

Add the library as a dependency to your project's build.gradle file:

dependencies {
	implementation 'com.liferay.mobile:liferay-push:1.3.0'
}

If you are using liferay-mobile-sdk version <= 7.1.3 or liferay-screens version <= 5.0.0 You should use this version instead

dependencies {
	implementation 'com.liferay.mobile:liferay-push:1.2.0.1'
}

Breaking changes in version 1.2.0

Since version 1.2.0 you have to add a new property when declaring the PushService:

<service android:name=".PushService"
	android:permission="android.permission.BIND_JOB_SERVICE" /> <!--You have to add this-->

Use

Registering a device

To receive push notifications, your app must register itself to the portal first. On the portal side, each device is tied to a user. Each user can have multiple registered devices. A device is represented by a device token string. Google calls this the registrationId.

To register a device, we need to configure our project with firebase, for doing so, we need to add the application to our firebase project settings:

Click on adding the android application and follow the instructions.

After registering the app in firebase, it's easy to register a device with Liferay Push for Android, you just have to call to the following method:

import com.liferay.mobile.push.Push;

Session session = new SessionImpl("http://localhost:8080", new BasicAuthentication("[email protected]", "test"));

Push.with(session).register();

If you want to use Liferay 7.x you should manually specify the version with a call like this:

push.withPortalVersion(70)

Since all operations are asynchronous, you can set callbacks to check if the registration succeeded or an error occurred on the server side:

Push.with(session)
	.onSuccess(new Push.OnSuccess() {

		@Override
		public void onSuccess(JSONObject jsonObject) {
			System.out.println("Device was registered!");
			registrationId = jsonObject.getString("token");
		}

	})
	.onFailure(new Push.OnFailure() {

		@Override
		public void onFailure(Exception e) {
			System.out.println("Some error occurred!");
		}

	})
	.register();

The onSuccess and onFailure callbacks are optional, but it's good practice to implement both. By doing so, your app can persist the registrationId device token or tell the user that an error occurred.

Liferay Push for Android is calling the GCM server, retrieving the results and storing your registrationId in the Liferay Portal instance for later use.

Don't forget to add in your app the Internet permission if you haven't done it already:

<uses-permission android:name="android.permission.INTERNET" />

And, if you are using Liferay 7, you will have to add permissions to be able to register the device in the portal:

All set! If everything went well, you should see a new device registered under the Push Notifications menu in Configuration. Next step is Receiving push notifications

Using the registrationId directly without registering against Liferay Portal

If you obtain the token manually, you can register the device to the portal by calling the following method:

Push.with(session).register(registrationId);

Now each time the portal wants to send a push notification to the user [email protected], it looks up all registered devices for the user (including the one just registered) and sends the push notification for each registrationId found.

You should note that the Push class is a wrapper for the Mobile SDK generated services. Internally, it calls the Mobile SDK's PushNotificationsDeviceService class. While you can still use PushNotificationsDeviceService directly, using the wrapper class is easier.

Receiving push notifications

Once your device is registered, you have to configure both the server and the client to be able to receive push messages.

To send notifications from Liferay you should configure the API_KEY inside System Settings, Notifications and Firebase. To obtain the API_KEY you should, again, access your firebase project settings and under Cloud Messaging, use the Server Key.

Then you have to configure your project to be able to listen for notifications:

  • You should implement a BroadcastReceiver instance in your app. Android's developer documentation shows you how to do this. Specifically, you should:

    • Register a <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> in your AndroidManifest.xml file.

    • Register a WAKE_LOCK permission and Internet if you had not used those permissions before:

       <uses-permission android:name="android.permission.INTERNET" />
       <uses-permission android:name="android.permission.WAKE_LOCK" />
    • Add a BroadcastReceiver and a IntentService to your project:

       <receiver
           android:name=".PushReceiver"
           android:permission="com.google.android.c2dm.permission.SEND">
           <intent-filter>
               <action android:name="com.google.android.c2dm.intent.RECEIVE" />
               <category android:name="com.liferay.mobile.push" />
           </intent-filter>
       </receiver>
      
      <service android:name=".PushService" 
      		android:permission="android.permission.BIND_JOB_SERVICE"/>
    • The code implementing those classes is really simple:

       public class PushReceiver extends PushNotificationsReceiver {
           @Override
           public String getServiceClassName() {
               return PushService.class.getName();
           }
       }
       
       public class PushService extends PushNotificationsService {
       	 @Override
           public void onPushNotification(JSONObject jsonObject) {
               super.onPushNotification(jsonObject);
               
               // Your own code to deal with the push notification
           }
       }
  • If you want to execute an action or show a notification only if the application is active, you could register a callback:

Push.with(session).onPushNotification(new Push.OnPushNotification() {

	@Override
	public void onPushNotification(JSONObject jsonObject) {
	}

});

This method only works if you have already registered against Liferay Portal using the previous instructions.

Sending push notifications

There are many ways to send push notifications from Liferay Portal. See the Liferay Push documentation for more details. Alternatively, you can send push notifications from your Android app. Just make sure the user has the proper permissions in the portal to send push notifications.

JSONObject notification = new JSONObject();
notification.put("message", "Hello!");

Push.with(session).send(toUserId, notification);

In this code, the push notification is sent to the user specified by toUserId. Upon receiving the notification, the portal looks up all the user's registered devices (both Android and iOS devices) and sends notification as the body of the push notification.

Unregistering a device

If you want to stop receiving push notifications on a device, you can unregister it from from the portal with the following code:

Push.with(session).unregister(registrationId);

Users can only unregister devices they own and they need to have the MANAGE_DEVICES permission.

com.liferay.mobile

Liferay Mobile

Liferay Mobile Projects

Versions

Version
2.0.0
1.1.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1