Android Deep Link的意图在某些设备上无法使用
我有一个以示例开始的DeepLink的应用程序,可以通过扫描包含DeepLink的QR码来启动该应用程序。
<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 "example://” -->
<data android:scheme="example"/>
</intent-filter>
我正在使用上面的代码。它与三星硬件上的预期完全合作。我的其他测试设备是Google Pixel 5A。在安装了我的应用程序中,将Google默认摄像机与安装的应用程序一起使用时,将看到一个以示例开始的DeepLink://
我的应用不属于出现的“打开”列表的一部分。
有什么想法可能导致这件事?
I have an app that listens for a deeplinks starting with example://
The app can be launched by scanning a QR code containing a deeplink.
<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 "example://” -->
<data android:scheme="example"/>
</intent-filter>
I am using the code above. It works exactly as expected on Samsung hardware. My other test device is a Google Pixel 5a. When using the google default camera with my app installed, The camera sees a deeplink starting with example://
my app is not part of the "open with" list that appears.
Any ideas what may be causing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来这是Pixel Camera应用程序的特定错误。该应用程序正在处理所有
示例://
链接,即即使http://
或https://
不包括It looks as though this is a bug specific to the Pixel camera app. The app is treating all
example://
links as though the destination is a web browser, even thoughhttp://
orhttps://
is not included