从意图过滤器中排除子域

4nd*_*o1d 6 android intentfilter

我正在将我的应用程序与以下意图过滤器一起使用:

 <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>
Run Code Online (Sandbox Code Playgroud)

我想在我们的应用程序中打开与该域的所有链接,除了一个特定的子域,例如

subdomain.myhost.com
Run Code Online (Sandbox Code Playgroud)

如何排除此处的子域?