【发布时间】:2017-06-19 01:37:48
【问题描述】:
上传失败
您应该同时使用 http 和 https 作为您的网络意图过滤器的方案。
我在将免安装应用上传到 Play 商店时收到此错误。我在 Manifest 中声明了 http 和 https 的意图过滤器,如下所示。
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="http"
android:host="XXXX" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="XXXX" />
</intent-filter>
能否请您告诉我可能出了什么问题以及为什么在上传到 Play 商店时出现此错误?
【问题讨论】:
标签: android intentfilter android-instant-apps