If you leave host & prefix 2-5 blank, it accepts all prefixes by default: ``` <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="domain.com" android:pathPrefix="/path" android:scheme="https" /> <data android:host=" " android:pathPrefix="/" android:scheme=" " /> <data android:host=" " android:pathPrefix="/" android:scheme=" " /> <data android:host=" " android:pathPrefix="/" android:scheme=" " /> <data android:host=" " android:pathPrefix="/" android:scheme=" " /> </intent-filter> ``` meaning that anything on domain.com/ will be accepted, rather than just domain.com/path related to https://github.com/ionic-team/ionic-plugin-deeplinks/issues/229 and https://github.com/ionic-team/ionic-plugin-deeplinks/issues/165
If you leave host & prefix 2-5 blank, it accepts all prefixes by default:
meaning that anything on domain.com/ will be accepted, rather than just domain.com/path
related to #229
and #165