1

在Android App action test toolsStudio 中用于测试 Google Actions,我得到了错误

Preview Creation Error Status Code: 400 Message: Precondition check failed.
The requested Android app package name does not have an associated project
 in Play Console. Please create a draft in Play Console and upload an app 
with package name 'com.example.yadayada'.

如果我尝试“使用包名上传应用程序......”我会收到错误消息

Upload failed
You have uploaded an APK or Android App Bundle that contains an action schema 
document in the manifest file, but the action patterns are not yet allowed. 
If you participate in a beta program, you must obtain authorization 
for your developer account

好的,但是我在哪里以及如何做呢?

此外,我不必发布应用程序,这只是一个草稿,用于测试未来可能的切片实现,文档指出可以通过 Android Studio 插件来实现。

4

2 回答 2

1

好的,我知道了。提示在这里

在开发者控制台中创建一个没有操作的新应用程序,并在操作的测试应用程序中使用它的包名。您可以使用已在 Console 中注册的任何包名称

android {
    defaultConfig {
        applicationId "com.example.yadayada.playconsole"
    }
}
于 2019-07-05T11:48:45.300 回答
0

您需要将其添加到清单文件中:

<meta-data
   android:name="android.app.shortcuts"
   android:resource="@xml/shortcuts" />

这在应用程序操作教程和这里都有解释:https ://developer.android.com/guide/topics/ui/shortcuts/creating-shortcuts#static

于 2021-10-13T17:23:08.213 回答