简体   繁体   中英

Android In-App Notifications Integration Popup not showing

I have problem with Android In-App Notifications Integration when integrate into my app. The campaign popup do not showing when receiver message from campaign push. It just show notification like this:

在此处输入图片说明

I did refer this guide of facebook to 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 any suggestion for my problem? What's wrong in my way and how can i fix it? Thanks.

I think guide of facebook is missing intent data in onNewIntent method. I resolved it by:

@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    if (intent != null) {
        NotificationsManager.presentCardFromNotification(this, intent);
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM