当前位置: 首页 > 知识库问答 >
问题:

数字资产链接到我的网站

东方淇
2023-03-14

我创建了一个即时应用。我把它上传到我的谷歌控制台,我发现了这个错误。

www.kochchy。cz网站尚未通过数字资产链接协议链接到您的应用程序。将应用程序站点与数字资产链接。

[{
  "relation": ["delegate_permission/common.handle_all_urls"],
  "target": {
   "namespace": "android_app",
    "package_name": "com.kochchy.instantapptest.app",
    "sha256_cert_fingerprints":["A4:A6:74:15:F1:3E:38:3F:93:0F:EF:E3:A6:86:8E:7C:25:45:E8:80:5B:5E:35:70:49:20:DB:F8:CB:D4:FC:E0"]
  }
}] 

两个apks,即时和可安装使用相同的id:com.kochchy.instantapptest.app(每个定义在自己的模块清单)

我的基本模块清单如下所示:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kochchy.instantapptest">

<uses-permission android:name="android.permission.INTERNET" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:theme="@style/AppTheme">

    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <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://www.kochchy.cz" />

        <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" />
            <data android:scheme="http" />
            <data android:host="www.kochchy.cz" />
            <data android:pathPattern="/menu" />
        </intent-filter>
    </activity>
</application>
</manifest>

------编辑------

我做了新项目从谷歌即时应用程序示例:https://github.com/googlesamples/android-instant-apps/tree/master/hello

同样的谷歌控制台错误。我猜是我的网络设置有问题,而不是应用程序有问题。

www.kochchy。cz网站尚未通过数字资产链接协议链接到您的应用程序。将应用程序站点与数字资产链接。

共有3个答案

云俊美
2023-03-14
"package_name": "com.kochchy.instantapptest.app"

在这里,您的应用程序ID应该来自可安装的应用程序,而不是来自即时应用程序清单

defaultConfig {
    applicationId "com.example.yourappid"
}
昝成弘
2023-03-14

在json文件中,字段package_name设置为com。科奇。这是一个测试。应用程序。

但是,AndroidManifest中的包名。xml设置为com。科奇。这是一个测试。

他们应该匹配。

编辑

你的结构看起来和谷歌推荐的大不相同。

你不应该重复你的代码和资源。相反,创建第三个模块(我们称之为base)作为基本功能模块,并将所有代码和资源移到那里。确保它的构造。gradle包括以下几行:

apply plugin: 'com.android.feature'

android {
    baseFeature true
    ...
}

dependencies {
    application project(':app')
    ...
}

在应用程序的构建中。gradle,确保你有以下几行:

apply plugin: 'com.android.application'
...
dependencies {
    implementation project(':base')
}

最后,在instantapp的构建中。格雷德尔:

apply plugin: 'com.android.instantapp'
...
dependencies {
    implementation project(':base')
}

您可能需要进行进一步的更改,但这应该是一个良好的开端。我强烈建议你看看这个页面,特别是“基本即时应用程序的结构”部分。

乐正乐湛
2023-03-14

所以对我来说,也许这对一些人来说很明显,是使用了错误的sha键。你需要做的是去你的https://play.google.com/apps/publish/控制台

进入发布管理,然后进入应用程序签名页面。从那里复制SHA256密钥。

转到https://developers.google.com/digital-asset-links/tools/generator,在那里输入sha键、url和Packagename。

将此文件上载到https://example.com/.well-known/assetlinks.json

确保文件位于正确的位置:名为的文件夹。众所周知的

发布你的即时应用

 类似资料:
  • 当我试图在play store中发布我的即时应用程序时,它显示了这一点 你网站的应用程序。我的域名。in'尚未通过数字资产链接协议链接到您的应用程序。请通过数字资产链接协议将您的网站链接到您的应用程序。 但我将数字资产链接链接到了我的网站,但仍然显示出这个错误。我使用的是游戏控制台中的App sign key,并且在测试时使用https://developers.google.com/digita

  • 我被困在上一周,我无法上传即时应用apk。我发现“您的网站'sptechinfo.000webhostapp.com'尚未通过数字资产链接协议链接到您的应用。请通过数字资产链接协议将您的网站链接到您的应用” 我已经添加了assetlink.jsonAssetLink.json但仍然在Playstore上获得相同的错误。 我从这里验证了链接https://digitalassetlinks.goog

  • 每当我试图将我的即时应用apks上传到Play store时,它都会出现以下错误: 您的网站www.mywebsitename。尚未通过数字资产链接协议将com链接到您的应用程序。请通过数字资产链接协议将您的网站链接到您的应用程序 然而,每当我执行https://developers.google.com/digital-asset-links/tools/generator时,它就会成功地与我的

  • 错误消息:您的网站“website.com”尚未通过数字资产链接协议链接到您的应用。请通过数字资产链接协议链接您的网站到您的应用。 你好 从上周开始处理这些问题。谷歌和play store支持团队也做了大量工作,但没有任何解决方案。因此,把它贴在这里,希望有人已经面临这个问题了。 对于即时应用程序上传到播放商店,我已经将资产json文件上传到指定的路径,我可以通过简单的GET请求获取该文件。所以,

  • 问题内容: 我的iPhone应用程序中有一个webview,并且我的Resources文件夹中也有一些html文件。加载应用程序后,我会将资源中的页面加载到Web视图中。但是,我需要在Web视图中建立指向其他资源的链接(例如,图像或其他html文件)。只做一个相对链接是行不通的: 问题答案: 加载这些资源时,需要设置基本URL。您可以使用以下方法执行此操作: …其中baseURL是资源文件夹的文件