Migrate Android SDK 3.8.1 to 3.8.2
When migrating the app from the Android 3.8.1 SDK to 3.8.2, do the following:
- Replace the existing .aar files with the new .aar files.
- Update the code that syncs inbox/in-app messages, if using our inbox plugin. For more information, go here.
- Add the
message-processors
JSON object in the plugin-inbox.json file, if using our inbox plugin:
{
"notification-actions": [
{
"type": "openInboxMessage",
"class": "co.acoustic.mobile.push.sdk.plugin.inbox.InboxMessageAction",
"initOptions": {
"templates": {
"html": "co.acoustic.mobile.push.sdk.plugin.inbox.HtmlRichContent"
},
"inboxControl sets a custom inbox control implementation": "set this to the inbox control class name or leave empty for default implementation",
"inboxControl": ""
}
}
],
"message-processors": [
{
"name": "messages",
"class": "co.acoustic.mobile.push.sdk.plugin.inbox.InboxMessageProcessor"
}
]
}
Note:
The message-processors JSON object is required for Android SDK 3.8.2.
Updated 8 months ago