-
Notifications
You must be signed in to change notification settings - Fork 0
Description
By implementing a custom URL scheme into the applications, we can actually autolaunch applications from Dringend. It would require an update, so this should be labeled as an enhancement.
All this would require is after triggering the install alert (as we can't know when the user taps install because it's a system thing) we could just continuously check if this
[[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"xxxxxx://"]];
returns true in the background. Once it does, we can then just run
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"xxxxxx://"]];
which will autolaunch our app for us. This would though require some user configuration or something else. I really think this would be useful to help speed up workflow and just fix that annoying iOS 8 change.