不断收到发布前报告错误 "Results not available. The devices could not be tested at this time."

Keep getting Pre-launch report error "Results not available. The devices could not be tested at this time."

前段时间,我在 Google Play 管理中心的预发布报告中收到错误 Results not available. The devices could not be tested at this time.。但是,这完全是暂时的体验,与标准结果相去甚远。

这次已经 2 周了,我上传了 6 个 APK,但出现了这个错误。连续 6 个 APK。

一开始,我认为这是由于我在 AndroidManifest.xml 中所做的更改所致,但我已经恢复了更改,并且错误仍然存​​在于新的 APK 中。清单中的更改是为主要 activity:

添加了深层链接

这是我的主activity:

<activity android:name=".activities.SplashScreenActivity"
    android:noHistory="true">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

这就是我更改的内容:

<activity android:name=".activities.SplashScreenActivity"
    android:noHistory="true">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.BROWSABLE" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:scheme="my_app_scheme" android:host="deeplink"/>
        <data android:scheme="https" android:host="www.mywebsite.com"/>
    </intent-filter>
</activity>

正如我所说,我删除了代码并重新上传了 APK,但我一直收到那个烦人的错误。我认为 Google Play Console 不适用于此配置(深层链接),即使我在使用我测试过的任何设备上都没有遇到任何问题 AndroidManifest.是的,我在发布前报告的“设置”选项卡中添加了几个深层链接。当我在 Android Studio 上测试这些深层链接时,它们运行良好。它们是一个活跃网站的 URL。

有谁知道如何获得更多关于为什么它不能正常工作的信息?我已经写了一封电子邮件给 Google Play 管理中心的支持人员,但我对他们会回复有用的回复不抱太大希望。

8 台设备的测试结果分别为:

Results not available. The devices could not be tested at this time.

2019 年 7 月更新

我仍然遇到错误。自从我开始遇到这个问题已经几个月了,除了 Results not available. The devices could not be tested at this time. 消息之外,绝对没有显示任何消息。

更糟糕的是,我的 Firebase Analytics 数据由于启动前报告而受到污染,即使在我停用启动前测试后,这些报告似乎仍会启动。

2019 年 8 月 31 日更新

几天前,我终于收到了来自 Google Play 支持团队的消息。他们已经解决了问题,现在一切正常。在数十次 APKs/App 捆绑包失败后。

感谢@nick-fortescue,我相信他帮助我将这个问题上报给了正确的人。

我已经就发布前的报告与一些工程师进行了交谈,他们认为您的深层链接意图过滤器不太可能有任何相关性,但他们很难在不知道有问题的应用程序的情况下进行检查。

如果您想将您的应用程序包名称保密,请通过 Google Play 控制台中的“帮助”菜单(位于问号图标后面)报告,并告诉帮助人员您已经被要求将其发送给发布前报告团队。如果你愿意,你可以提到我的名字。这可能是最好的选择,因为这样回复就可以给你了。

如果您可以在堆栈溢出中添加您的应用程序包名称,请随时将您的应用程序名称添加到问题中或在此处作为评论。