Web サイトの Android アプリ用に App Indexing の設定を完了したところです。https : / /developers.google.com/app-indexing/android/test (Android Studio での URL のテスト)
これは、私の Android マニフェストのインテント フィルターです。
<intent-filter android:label="@string/filter_title_default">
<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="example.com"
android:pathPrefix="/test" />
</intent-filter>
https://www.example.com/testは失敗するが、 https://example.com/testは失敗しないことに気付きました。www.example.com/test に別のインテント フィルタを指定する以外に、これを修正するにはどうすればよいですか?