Rich Push Integration for Android

The following document describes how to integrate the Android SDK to support Rich Push.

In order to integrate your app with the Rich Push, you will need to add the following action like intent-filter for an appropriate activity to the Android Manifest File:

<action android:name="com.mapp.RICH_PUSH" />
<activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <action android:name="com.mapp.RICH_PUSH" /> <category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="${applicationId}" /> //mandatory for Android FCM SDK v6.0.9 and later </intent-filter> </activity>

After that, you need to have the following method call added an onCreate method to the appropriate activity:

Appoxee.handleRichPush(this, getIntent());

Also, on the corresponding app page where a Rich Push is expected, call the following Java function: