Suhas Gosavi
Suhas Gosavi

Reputation: 2170

Mobilefirst 8.0 Push Notification

Android Cordova applications are able to receive and display, push notification while on click on notification application is not opening but notification gets cleared.

I am using Mobilefirst version 8.0. Following Link for push notification implementation.

What will be the issue?

Upvotes: 0

Views: 236

Answers (1)

Rahul Roy
Rahul Roy

Reputation: 81

Add the following to the AndroidManifest.xml file of the generated project (in Android Studio after building the Cordova project):

<activity android:name="com.ibm.mobilefirstplatform.clientsdk.android.push.api.MFPPushNotificationHandler"
            android:theme="@android:style/Theme.NoDisplay"/>

Upvotes: 3

Related Questions