我想把所有链接的深层链接看起来像这样:
https://myapp.com/*/*/quiz.html
我怎样才能做到这一点 ?我在我的Manifest中尝试这个intent-filter
但是pathPrefix不起作用:
<intent-filter>
<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="myapp.com"
android:pathPrefix="/.*/.*/quiz\\.html"/>
</intent-filter>
没有android:pathPrefix
它正在工作,但它打开了https://myapp.com
的所有链接。