EddyVerbruggen / Custom-URL-scheme

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

handleOpenURL(url) always execute when index page is loaded or redirect to index page on android. #265

Open nat54020 opened 6 years ago

nat54020 commented 6 years ago

handleOpenURL(url) always execute when index page is loaded or redirect to index page on android. There is no problem with iOS at all. I think it must execute only once when app is launched by a URL. please suggest me how to solve this.

Thank you very much

ChrisDenham commented 6 years ago

I think I came across the same issue and found relevant info in: #155 Basically, adding <preference name="CustomURLSchemePluginClearsAndroidIntent" value="true" /> to the <platform name="android"> section of config.xml cured the problem I was having.

Tjieco commented 6 years ago

@ChrisDenham this has resolved it for me aswell, thank you very much.