<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data
android:name="asset_statements"
android:resource="@string/asset_statements" />
<activity
android:name=".Home"
android:screenOrientation="portrait">
<meta-data
android:name="default-url"
android:value="https://www.builtbee.com" />
<intent-filter
android:autoVerify="true"
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" />
<data android:scheme="https" />
<data android:host="www.builtbee.com" />
<data android:pathPattern="/instantApp" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
我是不是错过了什么?
谢谢
请尝试按照文档中提供的步骤进行操作,也请参阅SO帖子中的讨论。
要添加意图筛选器和URL处理,请执行以下步骤:
>
选择工具>应用程序链接助手。
有关更多细节,请参阅此SO帖子
请检查您的网站资产链接文件是否没有经过某种形式的身份验证、内部IP或被防火墙阻止。如果数字资产链接文件不可公开访问,则Play Store开发人员控制台无法访问该文件。
希望这能有所帮助。
错误消息:您的网站“website.com”尚未通过数字资产链接协议链接到您的应用。请通过数字资产链接协议链接您的网站到您的应用。 你好 从上周开始处理这些问题。谷歌和play store支持团队也做了大量工作,但没有任何解决方案。因此,把它贴在这里,希望有人已经面临这个问题了。 对于即时应用程序上传到播放商店,我已经将资产json文件上传到指定的路径,我可以通过简单的GET请求获取该文件。所以,
我被困在上一周,我无法上传即时应用apk。我发现“您的网站'sptechinfo.000webhostapp.com'尚未通过数字资产链接协议链接到您的应用。请通过数字资产链接协议将您的网站链接到您的应用” 我已经添加了assetlink.jsonAssetLink.json但仍然在Playstore上获得相同的错误。 我从这里验证了链接https://digitalassetlinks.goog
当我试图在play store中发布我的即时应用程序时,它显示了这一点 你网站的应用程序。我的域名。in'尚未通过数字资产链接协议链接到您的应用程序。请通过数字资产链接协议将您的网站链接到您的应用程序。 但我将数字资产链接链接到了我的网站,但仍然显示出这个错误。我使用的是游戏控制台中的App sign key,并且在测试时使用https://developers.google.com/digita
我创建了一个即时应用。我把它上传到我的谷歌控制台,我发现了这个错误。 www.kochchy。cz网站尚未通过数字资产链接协议链接到您的应用程序。将应用程序站点与数字资产链接。 两个apks,即时和可安装使用相同的id:com.kochchy.instantapptest.app(每个定义在自己的模块清单) 我的基本模块清单如下所示: ------编辑------ 我做了新项目从谷歌即时应用程序示
每当我试图将我的即时应用apks上传到Play store时,它都会出现以下错误: 您的网站www.mywebsitename。尚未通过数字资产链接协议将com链接到您的应用程序。请通过数字资产链接协议将您的网站链接到您的应用程序 然而,每当我执行https://developers.google.com/digital-asset-links/tools/generator时,它就会成功地与我的
我使用的是React-Native命令,当我运行run命令时,会出现以下错误 您尚未接受以下SDK组件的许可协议:[Android SDK Platform 23,Android SDK Build-Tools 23.0.1]。 我有Android Studio与SDK版本26和Android SDK构建工具26安装。 为什么react会给出这个错误?