I am following the Push Campaigns Quickstart at https://developers.facebook.com/docs/push-notifications/quickstart. At the beginning of the document, I found this paragraph:
Prior to sending in-app notifications you will also need to integrate the FBNotifications library.
Based on the documentation at https://github.com/facebook/FBNotifications, I need to add the following to my gradle dependencies:
compile 'com.facebook.android:notifications:1.+'
I already have this in my gradle dependencies:
compile 'com.facebook.android:facebook-android-sdk:3.23.1'
Does Facebook SDK 3.23.1 (com.facebook.android:facebook-android-sdk:3.23.1
) include the FBNotifications library (com.facebook.android:notifications:1.+
)? Thank you.
EDIT: In the question at Android In-App Notifications Integration Popup not showing, the asker is using both 'com.facebook.android:facebook-android-sdk:4.+'
and 'com.facebook.android:notifications:1.+'
. That makes me think that Facebook SDK does not include the FBNotifications library.