即时应用发布错误

时间:2017-12-11 08:03:04

标签: android android-instant-apps

当我发布预览版时,请播放商店提示: 您必须使用至少一个映射到" example.com "的APK网站通过网络" intent-filter "。 开发版本没问题。

    <activity android:name=".MainActivity">

        <meta-data
                android:name="default-url"
                android:value="https://example.com/"/>

        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>

            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>

        <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="example.com"
                    android:pathPattern="/"
                    android:scheme="https"/>
            <data android:scheme="http"/>
        </intent-filter>

    </activity>

1 个答案:

答案 0 :(得分:1)

因为它是测试阶段,所以安装App的在线版本没有添加默认网址。将default-url添加到安装应用manifest.xml即可。