freshplanet / ANE-Push-Notification

Air Native Extension (iOS and Android) for Push Notification
Apache License 2.0
205 stars 104 forks source link

Get payload/message from notification #56

Closed varadig closed 7 years ago

varadig commented 9 years ago

Hi,

How can I get/ what kind of event I get the message or payload from the notification, when the app is on the background, and the user tap the notification to ACTIVATE the application? I read the PushNotificationEvent API, and tried the APP_STARTING_FROM_NOTIFICATION_EVENT, but the event is not triggered.

thanks

Provlax commented 9 years ago

Hi. In your manifest,

change:

<activity android:name="com.freshplanet.nativeExtensions.NotificationActivity" /> 

to:

<activity android:exported="true" android:name="com.freshplanet.nativeExtensions.NotificationActivity"/>

It's worked for me.