This repository was archived by the owner on May 15, 2024. It is now read-only.

Description
Description of the Feature
Provide the ability to detect and launch another application already installed on the device.
//Updated by JM
API Declaration
Integration Point: Launcher
API:
- Task<bool> CanOpenAsync(string uri);
- Task<bool> CanOpenAsync(Uri uri);
- Task OpenAsync(string uri);
- Task OpenAsync(Uri uri);
Implementations:
CanOpenAsync:
OpenAsync:
- UWP: Launcher LaunchUriAsync
- Android: Standard launcher stuff
- iOS: UIApplication.SharedApplication.OpenURL
Documentation links for supported platforms