繁体   English   中英

签名的捆绑包上传失败-为Web意向过滤器指定有效的域

[英]Signed bundle upload failed - Specify a valid domain for web intent-filters

上载已签名的捆绑软件应用程序时发现问题。 我遵循了App Links助手程序。 以下设置: App Links Assistant步骤1: 支持http和https的URL映射

<activity
android:name=".AwalLogin"
android:screenOrientation="portrait">

<tools:validation testUrl="https://myweb.net" />
<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

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

<intent-filter android:order="1">
    <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="myweb.net" />
</intent-filter>
<intent-filter android:order="1">
    <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="myweb.net" />
</intent-filter>

下一步:声明Web关联 结果是“应用已关联”

在设备上测试

测试成功运行

上载已签名的捆绑软件应用程序:我已经制作了一个已签名的捆绑软件应用程序,并将其上传到控制台,但仍然失败: 上传失败

我尝试遵循: https : //stackoverflow.com/questions/44772959/android-instant-app-is-uploaded-but-can-not-be-roll-out ,但仍然失败。 我还不知道解决方案。 谢谢。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM