2

更新:20170703 使用 Android Studio 3.0 Canary 5 修改了一些 AndroidManifest 和 build.gradle 文件,

将 Base 的 AndroidManifest 和 App 的 AndroidManifest 从内部移到内部,如下所示:

<application ...>
    <meta-data android:name="asset_statements" android:resource="@string/asset_statements" />
    <activity ...>
</application>

资源资产声明:

<string name="asset_statements">[{\n  \"relation\": [\"delegate_permission/common.handle_all_urls\"],\n  \"target\": {\n    \"namespace\": \"web\",\n    \"site\": \"https://example.com\",\n  }\n}]</string>

网页验证成功(见下方截图),上传新的 APK 和 ZIP(Instant App),但仍然存在无法推出 Instant App 的问题。

通过“实时聊天”联系了 google playstore 支持,承诺会在几天后回复但仍然没有回复。

在此处输入图像描述

------ OLD POST BELOW ------- 我正在使用 Android Studio 3.0 Canary 4(预览版)。

Installable APK 和 Instant App (zip) 均已成功上传。

Installable APK 已经推出。

数字资产链接 json 文件已在https://example.com/.well-known/assetlinks.json中上传并验证

我只有 1 个 Base 模块(功能模块),在 Base 的 AndroidManifest 内只有 1 个活动:

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

        <activity
            android:name="com.example.test.app.base.activity.MainActivity"
            android:configChanges="locale|layoutDirection|orientation|keyboardHidden|screenSize"
            android:windowSoftInputMode="adjustResize"
            android:launchMode="singleTop"
            >

            <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://example.com/instantapp/.*" />

            <meta-data
                android:name="asset_statements"
                android:resource="@string/asset_statements" />

            <intent-filter android:order="1" 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" />
                <data android:scheme="https" />
                <data android:host="example.com" />
                <data android:pathPattern="/instantapp/.*"/>
            </intent-filter>

        </activity>
</application>

我的 assets_statements 在 /res/string.xml 中定义:

<string name="asset_statements" translatable="false">
        [{
            \"include\": \"https://example.com/.well-known/assetlinks.json\"
        }]
</string>

所以目前我相信一切都应该正常工作,因为在 Google Playstore 中上传时任何配置问题都会被过滤,目前我无法推出我的即时应用程序,因为错误:

错误 在开始推出此版本之前解决这些错误。

您的网站“mysite.com”尚未通过数字资产链接协议链接到您的应用程序。请通过数字资产链接协议将您的网站链接到您的应用程序。

警告

在开始发布此版本之前检查这些警告。

在此处输入图像描述

注意:example.com 仅用于替换我的真实域。

请帮助我了解问题所在以及如何解决?

4

2 回答 2

2

如果您使用的是Google Play 应用签名,那么您的本地密钥库包含上传密钥,它与应用签名密钥不同。

在这种情况下,使用 keytool 获得的 SHA256 指纹不是您应该包含 Digital Assets Link json 文件的指纹。

正确的 SHA256 指纹可以在 Google Play Console 中的 Release Management / App Signing / App signing certificate 下获得。

Play 控制台屏幕截图

于 2017-08-04T19:38:14.937 回答
0

您需要在深层链接中使用路径模式:确保您使用的是实际域而不是 example.com

https://example.com/instantapp
于 2017-06-27T06:08:33.727 回答