【发布时间】:2019-08-16 13:29:11
【问题描述】:
我正在尝试为我的应用设置应用链接。该应用根据应用链接助手关联到网站,但由于某种原因,在安装过程中验证过程失败。
这是我的应用的意图过滤器
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="staging.lemonilo.com"
android:scheme="https" />
</intent-filter>
我的assetlinks.json 的位置
https://staging.lemonilo.com/.well-known/assetlinks.json
使用 git bash 来自 catlog 的错误日志
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: Verification result: checking for a statement with source a: # brgr@3ede8955
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: w: 32
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: , relation delegate_permission/common.handle_all_urls, and target b <
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: a: "com.lemonilo"
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: b: # brgp@8358a08
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: w: 113
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: >
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: w: 115
08-16 10:34:41.738 15815 16129 I SingleHostAsyncVerifier: --> false.
08-16 10:34:41.738 15815 9034 I IntentFilterIntentOp: Verification 28 complete. Success:false. Failed hosts:staging.lemonilo.com.
【问题讨论】:
标签: android