Manifest:
service
android:name=".phunwarebeacon.EditNotificationService"
android:exported="false"> // Also tried with exported true
intent-filter
action android:name="com.phunware.Engagement.EDIT_NOTIFICATION"
intent-filter
service
MessageInterceptor:
addMessageListener() is commented. Not required so commented it.
With this code, none of the callback in EditNotificationSerivce are called. Tried when both app is in background, foreground and not running status. Can someone pls help with this?
Requirement:
Add a pending intent to notification builder. So when user taps on a notification, launch a specific activity.
Manifest: service android:name=".phunwarebeacon.EditNotificationService" android:exported="false"> // Also tried with exported true intent-filter action android:name="com.phunware.Engagement.EDIT_NOTIFICATION" intent-filter service
MessageInterceptor: addMessageListener() is commented. Not required so commented it.
With this code, none of the callback in EditNotificationSerivce are called. Tried when both app is in background, foreground and not running status. Can someone pls help with this?
Requirement: Add a pending intent to notification builder. So when user taps on a notification, launch a specific activity.