EddyVerbruggen / Custom-URL-scheme

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

A new webview is open when open my app through the customized url scheme #287

Open zhaoyi0113 opened 5 years ago

zhaoyi0113 commented 5 years ago

I am using this plugin in my cordova android application. However, when other app open this customized url, it opens a new webview in my cordova app. Is there a way for me to reuse existed webview when it opens? Below is my configuration:

<plugin name="cordova-plugin-customurlscheme" spec="^4.3.0">
        <variable name="URL_SCHEME" value="myapp" />
    </plugin>
KillerCodeMonkey commented 5 years ago

add this to your config.xml

<preference name="AndroidLaunchMode" value="singleTask" />