我遵循了https://developers.google.com/assistant/app/in-app-promo-sdk的所有步骤,但它仍然无法正常工作有谁知道为什么这对我不起作用?
错误信息是
com.google.assistant.appactions.suggestions.client.ClientException:无法验证 APK 签名。如果这是一个开发版本,请确保在应用操作测试工具中更新您的应用预览。
这是打开 ShortcutSuggestion Intent 的代码。
val orderShortcut = AppShortcutSuggestion.builder()
.setAppShortcutIntent(appShortcutIntent)
.setCommand("order my bubble tea")
.build()
shortcutsClient.createShortcutSuggestionIntent(orderShortcut)
.addOnSuccessListener { intent ->
application.startActivity(
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
);
}.addOnFailureListener {
Log.e("Log", "Failed to get shortcut settings intent", it);
}