Skip to main content


         This documentation site is for previous versions. Visit our new documentation site for current releases.      
 

This content has been archived and is no longer being updated.

Links may not function; however, this content may be relevant to outdated versions of the product.

Connect SDK 7.4 migration guide for the Android platform

Updated on September 13, 2021

Several changes were introduced in Pega ® Mobile SDK 7.4, which includes the Connect SDK for the Android platform. This article will help you migrate your application from an earlier version of the Connect SDK to the current version.

API and class name changes

The following API names have changed:

  • The com.pega.connectsdk.pegaapi.api.* package is now called com.pega.connectsdk.pegaapi.*.
  • The com.pega.connectsdk.pegaapi.api.PegaNotification.* package is now called com.pega.connectsdk.pegaapi.Notification.*.
  • The com.pega.connectsdk.pegaapi.api.error.* package is now called com.pega.connectsdk.pegaapi.error.*.

The following class names have changed:

  • PegaApi is now called Pega.
  • PegaConfig is now called Configuration.
  • api.PegaAuthentication is now called Authentication.
  • api.PegaNotification is now called Notification.
  • api.PegaNotification.NotificationEnableCallback is now called Notification.NotificationRegisterCallback (for more information, see Notifications).
  • api.PegaNotification.NotificationClickedReceiver is now called Notification.ClickedReceiver.
  • api.PegaNotification.NotificationReceivedReceiver is now called Notification.ReceivedReceiver.
  • com.pega.connectsdk.pegaapi.model.NotificationPayload was renamed to com.pega.connectsdk.pegaapi.notification.NotificationData
  • com.pega.connectsdk.pegaapi.model.NotificationData was renamed to com.pega.connectsdk.pegaapi.notification.NotificationDetails

The following classes were removed and their functionality should be implemented in the Notification.NoticationHandler class. For more details, see Enabling Push Notifications.

  • api.PegaNotification.NotificationClickedReceiver
  • api.PegaNotification.NotificationReceivedReceiver

Configuration

The following method of is deprecated:

PegaConfig config = new PegaConfig();
config.setPegaUrl("http://sample.pega.com/prweb");
PegaApi pega = PegaComponent.Initializer.init(config);

Instead, you should use the methods presented in the following two examples:

Pega pega = Pega.create();
pega.configuration().setServerUrl("http://sample.pega.com/prweb");
pega.configuration().setServerAndRestApiUrls("http://sample.pega.com/prweb/<custom_authentication_service>", "http://sample.pega.com/prweb/api/v1");

Notifications

The implementation of api.PegaNotification.NotificationReceivedReceiver.onReceive() should be moved to the definition of Notification.NotificationHandler.onNotificationReceived().

The implementation of api.PegaNotification.NotificationClickedReceiver should be replaced by creating a new PendingIntent that is returned in the Notification.NotificationHandler.createNotificationContentIntent() method.

For more details, see Enabling Push Notifications.

Tags

Pega Platform 7.3.1 - 8.3.1 Pega Web Mashup Mobile Pega Express

Have a question? Get answers now.

Visit the Support Center to ask questions, engage in discussions, share ideas, and help others.

Did you find this content helpful?

Want to help us improve this content?

We'd prefer it if you saw us at our best.

Pega.com is not optimized for Internet Explorer. For the optimal experience, please use:

Close Deprecation Notice
Contact us