Reputation: 4343
Is it possible to integrate the google assistant in an android app?
I couldn't find any information about it online.
I know today Google released the Assistant SDK but they don't mention any android support even in their Android Developers Blog post
It would be useful to ask for something your app can offer if installed.
For example:
"ok google, find a Star Wars blu ray on amazon"
and it would launch the amazon shopping app and look for it.
Is it possible to implement something like this within an app with this released SDK?
Upvotes: 22
Views: 30987
Reputation: 1474
Google launched App Actions, currently in developer preview. With App Actions you can have an Assistant Action to deep link into your app. The full details are at https://developers.google.com/assistant/app/get-started.
The short version is:
actions.intent.OPEN_APP_FEATURE
.actions.xml
file according to the schema and link to it from the AndroidManifest.xml
.actions.xml
file you created:<actions>
<action intentName="actions.intent.OPEN_APP_FEATURE">
<fulfillment urlTemplate="exampleapp://open{?appfeature}">
<parameter-mapping intentParameter="feature" urlParameter="appfeature" />
</fulfillment>
</action>
</actions>
Your activity should then be available when asking the Assistant for queries as specified in the examples on the built-in intent's page.
Upvotes: 0
Reputation: 5148
Google assistant is build for actions, so if you want to build a conversation, you need to use another api, like api.ai. Also you can look here.
Upvotes: 4
Reputation: 50701
Your example doesn't illustrate embedding the Assistant in your own app - it sounds like it illustrates using the Assistant to start your app.
The former would be supported with this SDK, the latter... not really.
You can embed the newly announced SDK into your apps by building a gRPC library for Android. See https://developers.google.com/assistant/sdk/prototype/getting-started-other-platforms/integrate for the overview information for the Assistant SDK and http://www.grpc.io/docs/quickstart/android.html for getting started with gRPC for Android.
Upvotes: 10