Hello @campaignerforlife
Could you please share how the deep link is configured in the APP? Are you using OOTB click action or using application variables for deep-linking?
If you are using the application variables for deeplink then the mobile developer will have to capture all those variables by OnMessageReceived function.
Here is an example:
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d(LOG_TAG, "From: " + remoteMessage.getFrom());
if (AEPMessagingService.handleRemoteMessage(this, remoteMessage)) {
// Campaign extension has handled the notification
} else {
// Handle notification from other sources
}
}
In this function, the app can check for click_action (in case of OOTB click action) or any other variable in case of application variables.
Mobile App will have to take this action of redirection or opening a URL. AEP Mobile SDK won't do this out of the box.