首页 文章

我尝试将我的即时应用apks上传到Play商店,它会出现以下错误

提问于
浏览
0

我将我的即时应用apks上传到Play商店,它会出现以下错误:

您的网站www.tomtop.com尚未通过数字资产链接协议链接到您的应用 . 请通过数字资产链接协议将您的网站链接到您的应用 .

我运行digital asset links generator,它返回成功与我的应用程序和网站关联 . 为什么我会收到此错误?

Asset links check

这是我的AndroidManifest:

<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:scheme="https"
         android:host="www.tomtop.com"
         android:pathPrefix="/instant" />
</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:scheme="http"
        android:host="www.tomtop.com"
        android:pathPrefix="/instant" />
</intent-filter>

1 回答

相关问题