其他分享
首页 > 其他分享> > android-上传失败您应该同时使用http和https作为Web意向过滤器的方案

android-上传失败您应该同时使用http和https作为Web意向过滤器的方案

作者:互联网

上传失败

您应该同时使用http和https作为Web意向过滤器的方案.

将即时应用上传到Play商店时出现此错误.我在清单中声明了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商店时收到此错误?

解决方法:

尝试像这样声明IntentFilter

<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" />
    <data android:scheme="https" />
    <data android:host="yourhost.ru" />
    <data android:pathPattern="/featurePath" />
</intent-filter>

标签:intentfilter,android-instant-apps,android
来源: https://codeday.me/bug/20191111/2018584.html