我面临着深层链接的特定问题。我的意思是,对于通用链接,我有类似[]
https://www.website.com/LANGUAGE/dashboard/profile
这意味着语言可以是
/en/ /fr/ /de/ /it/ /es/
或更多...
问题是我尝试执行清单:
<intent-filter android:label="@string/app_name"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="www.website.com" android:scheme="https" android:path="/*/dashboard/profile"/> </intent-filter>
但是
*
不起作用。有什么解决办法吗?
我面临着深层链接的特定问题。我的意思是,对于通用链接,我有类似https://www.website.com/LANGUAGE/dashboard/profile的内容,这表示语言可以是/ en / / fr / / ...