私は自分のサーバーにプログレッシブ ウェブ アプリを追加しようとしています。アプリごとに新しい Web サイトを作成したくありません。私の好みは、各アプリを次のような Web サイトのサブディレクトリに追加することです: www.example.com/app1
問題は、ここでステートメント リスト ジェネレーターを実行すると次のようになることです。 https://developers.google.com/digital-asset-links/tools/generator
assetlinks.json を www.example.com に配置した場合にのみ機能します。その場合、www.example.com には 1 つのアプリしか配置できません。assetlinks.json を 1) www.example.com/app1、2) www.example.com/app1/.well-known、3) www.example.com に配置してみました。機能するのは #3 だけです。
また、androidmanifest.xml に次のインテント フィルターを追加しましたが、機能しません。
<intent-filter android:label="@string/app_name" android:autoVerify="true" >
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<!-- Edit android:host to handle links to the target URL-->
<data android:scheme="https"
android:host="example.com"
android:pathPrefix="/app1" />
</intent-filter>
プログレッシブ ウェブ アプリごとに異なる Web サイトを用意する必要があるとは信じられません。何か提案はありますか?