是否有办法检测OPEN_URI操作中的URL有效负载是否已关闭或未成功发送。
特别是如果这是一个自定义网址协议。
示例:
url payload:customprotocol:// open
其中customprotocol在清单中定义为
Android原生应用,添加主要意图过滤器:
<intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> <data android:scheme="customprotocol" /> </intent-filter>
然后启动native apk作为mirror api action payload:
{ "id": "launchMe", "action": "OPEN_URI", "values": [ { "displayName": "Open", } ], "payload": "customprotocol://open" }
如果没有启动customprotocol,即,如果没有安装apk,有没有办法检测到?
(技术来自:) https://plus.google.com/u/0/106035004831103549307/posts/E1XqxCoNBD7