EddyVerbruggen / Custom-URL-scheme

:link: Launch your Cordova/PhoneGap app by a Custom URL scheme like mycoolapp://
1.03k stars 367 forks source link

handleOpenUrl Not called - Confirmed working with cordova-ios 6.2.0? #339

Closed homerlex closed 2 years ago

homerlex commented 2 years ago

Using cordova-ios 6.2.0 Testing on iOS 15.1

I have an app with the handleOpenUrl function defined in the deviceready callback. On iOS the app is launched properly when clicking on an url with the defined scheme. However the handleOpenUrl() function is never called.

I installed the same cordova project on Android and it works perfectly there.

Can anyone confirm that handleOpenUrl() is getting called for them when using cordova-ios 6.2.0 on iOS 15.1?

My handleOpenUrl() function just modifies the DOM of the index.html (for testing purposes)

homerlex commented 2 years ago

Nevermind. I found that the app had another plugin (ionic-deeplinks) that was interfering. Its work great after that plugin was removed.