Hi Adobe Mobile Engineers,
I have following scenario.
I'm receiving push notification in 3 different situations.
1- App is in foreground
2- App is in background
3- App is force closed
I have followed collectLifecycleData and all that documentation.
The sdk tracks analytics for deep link in 1st and 2nd case, although not in the 3rd case.
Basically,
if(MobileConfig.getInstance().mobileUsingAnalytics()) {
AnalyticsTrackInternal.trackInternal("AdobeLink", cData1, StaticMethods.getTimeSince1970());
}
Execution will not enter the if block in 3rd case. Note that my Notification Receiver activity starts collecting lifecycle data as the first statement in onCreate().
and that is where I'm calling it to track the deep link url after that.