我正在使用我的应用程序使用以下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:host="*.myhost.com"
android:pathPattern=".*"
android:scheme="https" />
</intent-filter>
我想在我们的应用中打开与该域名相关的所有链接,但
等特定子域名除外subdomain.myhost.com
如何在此处排除子域?