Receive and present push notifications.
This class may be extended to customize notification presentation.
<service android:name="com.askingpoint.android.PushService" android:label="AskingPoint Push Service"/>
<receiver android:name="com.askingpoint.android.PushBroadcastReceiver" android:exported="false">
<!-- If you want the icon for push messages to be different then your application icon:
<meta-data android:name="com.askingpoint.android.push.icon" android:resource="@drawable/push_icon"/>
-->
<intent-filter>
<action android:name="com.askingpoint.android.push.intent.RECEIVE" />
<action android:name="com.askingpoint.android.push.intent.OPEN" />
<action android:name="com.askingpoint.android.push.intent.DISMISS" />
</intent-filter>
</receiver>