使用Android深层链接与URL的结尾

问题描述 投票:0回答:1

我想把所有链接的深层链接看起来像这样:

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的所有链接。

android deep-linking intentfilter
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.