-
Notifications
You must be signed in to change notification settings - Fork 19
How do I make Infobip Voice and Mobile Messaging SDK work together?
Ivan Bilobrk edited this page Mar 19, 2025
·
2 revisions
- Implement Mobile Messaging library following Mobile App Messaging quick start
In Step 3 of Android Quick start guide don't add
<string name="google_app_id">SENDER ID</string>tovalues/strings.xmlbecause it will be read from yourgoogle-services.jsonfile by Google Services Gradle Plugin
- Implement WebRTC library following WebRTC quick start
- Resulting app/build.gradle file should have following Infobip dependencies:
dependencies {
...
implementation ('com.infobip:infobip-mobile-messaging-android-sdk:+@aar') {
transitive = true
}
implementation ('com.infobip:infobip-rtc:+@aar') {
transitive = true
}
}- To set up the the WebRTC library's Firebase, you need to create your own
FcmServiceclass which extends theFirebaseMessagingService. Follow this article for Mobile Messaging library for processing push messages.
If you have any questions or suggestions, feel free to send an email to [email protected] or create an issue.