是的,您需要将额外的域添加到intent-filter
in AndroidManifest.xml
。
使用twa-multi-domain示例,应用程序中的主域是www.google.com
并且是额外域。添加 2 个额外的域后,这部分应该是这样的(第 13 到 16 行是新的):github.com
www.wikipedia.com
AndroidManifest.xml
...
<activity android:name="com.google.androidbrowserhelper.trusted.LauncherActivity"
android:label="@string/app_name">
...
<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:scheme="https"
android:host="www.google.com"/>
<data android:scheme="https"
android:host="github.com"/>
<data android:scheme="https"
android:host="www.wikipedia.com"/>
</intent-filter>
</activity>
...