click_action are not working.
What should be specified for intent-filter for click_action? action? or category? or data(url)?
click_action are not working.
What should be specified for intent-filter for click_action? action? or category? or data(url)?
<activity
android:name="com.your activity name"
android:configChanges="orientation|screenLayout|screenSize"
android:label="@string/app_name">
<intent-filter>
<action android:name="com.your activity page"></action>
<category android:name="android.intent.category.DEFAULT"> </category>
</intent-filter>
</activity>
and use click action in your payload in server like this.
$notification = array
(
'icon' => 'ic',
'title' => 'title',
'body' => ' msg',
'click_action' => 'your activity name of action'
);