1

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 に別のインテント フィルタを指定する以外に、これを修正するにはどうすればよいですか?

4

2 に答える 2

0

私の知る限り、各ホストは新しいインテント フィルターに追加する必要があります。詳細については、このドキュメントを参照してください。

乾杯、MB

于 2016-01-12T20:50:54.100 に答える