intent
<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:scheme="https"
android:host="url.com"
/>
</intent-filter>
Website URLs look like the following
url.com/usernames //website users username open in app
url.com/brand/.. //open in app
url.com/data/.. // open in app
url.com/about/.. // exclude
url.com/privacy/..// exclude
How can I manage not to open some URLs with the app?