Skip to content

Support to call app URL to autolaunch the app? #98

@ezhes

Description

@ezhes

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.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions