如何匹配网址的结尾?
具体来说,我希望将https://github.com/user/repo/projects与一项活动匹配,将https://github.com/user/repo与另一项活动匹配
我尝试使用路径模式
<data
android:host="github.com"
android:pathPattern=".*projects"
/>
或
<data
android:host="github.com"
android:pathPattern=".*/projects"
/>
但这与路径不匹配。
编辑 - 我也试过
<data
android:scheme="https"
android:host="github.com"
android:pathPattern="/.*/.*/projects"
/>