Ignorar URLs específicos do filtro Intent

Como ignorar um conjunto específico de URLs do Filtro de Intenção. Filtro existente.

<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="www.example.com" android:scheme="http" />
    <data android:host="www.example.com" android:scheme="https" />
    <data android:host="example.com" android:scheme="http" />
    <data android:host="example.com" android:scheme="https" />
</intent-filter>

Com o filtro acima, todos os URLs são abertos no aplicativo. Quero ignorar alguns URLs e ele deve ser aberto usando o navegador. URLs de exemplo a serem ignorados.

https://www.example.com/privacy-policy
https://www.example.com/tos
https://www.example.com/faq

O código abaixo abre diretamente o aplicativo.

Uri uri = Uri.parse("https://www.example.com/privacy-policy");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent); // Opens the app directly.
// startActivity(Intent.createChooser(intent, "Select browser")); // Shows current app only.

questionAnswers(0)

yourAnswerToTheQuestion