I've integrated Firebase into my application in the following methods
- (BOOL)application:(UIApplication *)application
openURL:(NSURL *)URL
options:(NSDictionary<NSString *, id> *)options
- (BOOL)application:(UIApplication *)application
continueUserActivity:(NSUserActivity *)userActivity
restorationHandler:(void (^)(NSArray *))restorationHandler
I'm able to successfully test a link from mobile Safari that launches the iOS application in the Simulator.
My question is, is there a way to test the path for following a mobile link that launches the app store and then continues passing the link to the iOS application?
I want to be able to test my changes in the simulator before submitting the code to the App Store.