-
Notifications
You must be signed in to change notification settings - Fork 42
Deep linking on Android & iOS 8 and earlier
Obaied edited this page Nov 2, 2016
·
2 revisions
To support deep linking handling in your app for Android and iOS 8 and earlier versions, you can use the Custom URL Scheme
plugin which can be found here.
After you successfully integrate this plugin, in the callback method used with the plugin described in this section you will have an access to the content of the URL which opened your app on user's device:
function handleOpenURL(url) {
setTimeout(function () {
// Check content of the url object and get information about the URL.
}, 300);
};
By completing integration of this plugin, you should be able to handle deep linking in Android and iOS 8 and lower.
Basic Integration
Additional Features