I've implemented universal links in my application as well as server side. Everything works fine when the app is installed. If the app is not installed on the device and I click on the universal link from say notes or mail, I'm redirected to the app store from where I can download the app. On download completion however, if I click 'OPEN' in the app store page, the app delegate method below is not called:
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void(^)(NSArray * __nullable restorableObjects))restorationHandler
As a result, I cannot perform certain actions in response to the userActivity.webpageURL
that I would normally get when the app is running or previously installed on a device. Is this normal behaviour? i.e. If the app is not installed, the Universal link will only serve as a medium to install the app from the app store?