gpt4 book ai didi

android - 如何在华为设备上进行深度链接?

转载 作者:行者123 更新时间:2023-12-05 00:02:40 25 4
gpt4 key购买 nike

使用此 Intent 过滤器,具有谷歌服务的设备提供在应用程序或浏览器中打开链接的选项。华为设备直接在浏览器中打开。
如何在华为上获得深度链接?

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.example.com/gizmos” -->
<data android:scheme="http"
android:host="www.example.com" />
</intent-filter>

最佳答案

您上面提供的代码也可以直接在华为设备上使用。
也可以引用华为push kit :

<activity android:name=".DeeplinkActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
<!-- Customize the following information:-->
android:host="com.huawei.codelabpush"
android:path="/deeplink"
android:scheme="pushscheme" />
</intent-filter>
</activity>
更多详情,请查看 Docs link .

关于android - 如何在华为设备上进行深度链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68679866/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com