Configuring HMS Push Kit
library_add_check

Prerequisites

  • Ensure that you have configured Push Kit on your application.
    For more information, refer to HMS Push Kit documentation.
  • Ensure that you configure MoEngage SDK for receiving push notifications.

SDK Installation

Installing Using Catalog

Integration using a Version Catalog is the recommended way of integration; refer to the Configure Version Catalog document to configure a catalog if not done already. Once you have configured the catalog add the dependency in the app/build.gradle file as shown below

build.gradle
dependencies {
      ...
      implementation(moengage.pushKit)
}

Alternatively, you can add the dependency using Artifact ID as described in Installation using Artifact ID. However, installation using Catalog ID is the recommended approach as installing using Artifact ID may lead to version mismatch if mapped incorrectly. 

Push Token Management

When using MoEngage SDK, you can either register for token and pass it on to the MoEngage SDK or simply let MoEngage SDK register for Push Token.

Token Registration Handled by Application

If your application is registering for Push Notification, use the below API to pass the Push token to the MoEngage SDK.

Kotlin Java
MoEPushKitHelper.getInstance().passPushToken(context, token)

Token Registration Handled by MoEngage

By default, the MoEngage SDK does not register for push tokens. You can enable the token registration using the configurePushKit() API in the MoEngage.Builder while initializing the SDK

Kotlin Java
val moEngage = MoEngage.Builder(this, "XXXXXXXX")
     .configurePushKit(PushKitConfig(true))
     .build()
MoEngage.initialiseDefaultInstance(moEngage)

Add the below Service in your application's Manifest file.

AndroidManifest.xml
<service
    android:name="com.moengage.hms.pushkit.MoEPushKitMessageService"
    android:exported="false">
  <intent-filter>
    <action android:name="com.huawei.push.action.MESSAGING_EVENT" />
  </intent-filter>
</service>>

When MoEngage SDK handles push registration, it optionally provides a callback to the Application whenever a new token is registered, or the token is refreshed.
An application can get this callback by implementing the TokenAvailableListener interface and registering the listener using MoEPushKitHelper.getInstance().addTokenListener() API.

info

Note

To use Push Kit, you need to update the moe-android-sdk to 10.3.00 or above.

Configure Your Account on MoEngage

Now you have set up Huawei Push on MoEngage SDK. Proceed to configuring Huawei Push on MoEngage dashboard.

Previous

Next

Was this article helpful?
0 out of 0 found this helpful

How can we improve this article?