Adding Rich Landing Page
Rich landing page can be used to open a web url inside the app via a push notification.
To use rich landing page you need to add the below code in the AndroidManifest.xml
<activity
android:name="com.moe.pushlibrary.activities.MoEActivity"
android:label="[ACTIVITY_NAME]"
android:parentActivityName="[PARENT_ACTIVITY_NAME]" >
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="[PARENT_ACTIVITY_NAME]" />
</activity>
Replace [ACTIVITY_NAME]
with the name that you want to appear on your rich landing page. Replace [PARENT_ACTIVITY_NAME]
with the parent activity name that you want.
In case you don't want any in-app to be shown when loading the rich landing please add the above mentioned "com.moe.pushlibrary.activities.MoEActivity
to the in-app suppression list as mentioned here.

Updated over 5 years ago