EddyVerbruggen / Custom-URL-scheme

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

how does one use this in Android? #216

Closed pliablepixels closed 7 years ago

pliablepixels commented 7 years ago

Hi there, I've integrated this plugin and tested it works fine in iOS. How do I go about testing in android?

When I launch a chrome browser and type in zmninja://?mid=4 it gets translated into a google search query. Based on the documentation of this plugin, using automatic CLI install should require no further steps.

I see that the plugin install has automatically added this to my manifest

 <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="zmninja" />
            </intent-filter>

Thanks

pliablepixels commented 7 years ago

closing - found this https://github.com/EddyVerbruggen/Custom-URL-scheme/issues/141