Suppose we have an activity to resolve external URL links with a specifix pathPrefix. It's not a problem. The problem is to have a method to make those links is only resolvable with my app. For example: We have this intent filter
<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:host="example.com" android:pathPrefix="/specific_prefix/" android:scheme="http" /> </intent-filter> And I want only my app to be used for example for "example.com/specific_prefix/etc". If that eve possible?