特定语言的深层链接

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

我面临着深层链接的特定问题。我的意思是,对于通用链接,我有类似[]

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 / / ...

android deep-linking android-deep-link
1个回答
0
投票
据我所知,Android不支持深链接的多语言功能。因此,您需要为每种语言提供唯一的URL路径,例如:
© www.soinside.com 2019 - 2024. All rights reserved.