facebook - Android In-App Notifications Integration Popup not showing -


i have problem android in-app notifications integration when integrate app. campaign popup not showing when receiver message campaign push. show notification this:

enter image description here

i did refer guide of facebook integrate: https://developers.facebook.com/docs/push-campaigns/android

my gradle:

compile 'com.facebook.android:facebook-android-sdk:4.+' compile 'com.facebook.android:notifications:1.+' 

have suggestion problem? what's wrong in way , how can fix it? thanks.

i think guide of facebook missing intent data in onnewintent method. resolved by:

@override protected void onnewintent(intent intent) {     super.onnewintent(intent);     if (intent != null) {         notificationsmanager.presentcardfromnotification(this, intent);     } } 

Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -