Android Push Message Integration
1
2
3
4
5
Deep Link Navigation
Push Message Icon Change
key
Description
Example
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
<application
android:name=".MainApplication"
>
...
<meta-data
android:name="io_hackle_android_default_notification_small_icon"
android:resource="@drawable/ic_push_small"/>
<meta-data
android:name="io_hackle_android_default_notification_large_icon"
android:resource="@drawable/ic_push_large"/>
<meta-data
android:name="io_hackle_android_default_notification_color"
android:resource="@color/pie" />
...
</application>
</manifest>Changing the Push Message Icon from the Dashboard
Push Channel Support
Example
Last updated