我在res/xml中添加了shortcuts.xml,还添加了
<meta-data
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
在AndroidManifest.xml中,并在Play控制台内部测试中上传了签名的捆绑文件。
但我得到以下错误,而创建预览使用谷歌助理应用程序操作测试工具在android studio
Google Assistant plugin v2.3.0
Preview Creation Error
Status Code: 400
Message: Precondition check failed.
- Please sign in to Play Console (https://play.google.com/apps/publish) and check if you have accepted the latest Terms of Service (ToS), and the Gmail/G-Suite account has the authorization to modify the app with package name 'uninitialized.application.id'.
2条答案
按热度按时间uemypmqf1#
错误消息中的如下部分
似乎特别奇怪。有几件事我会确保:
app/build.gradle
在defaultConfig部分中具有正确的applicationId,并且在其他地方使用此Id。app/build.gradle
中正确设置后,您可以重新构建整个项目xxslljrj2#
我发现我必须在多个地方添加
meta-data
标签,如果你像这样使用标准的shortcuts.xml
:我不得不将这个添加到第一个块中,即使它也被包括在接收意图的块中。
更全面的例子: