ddalu5
ddalu5

Reputation: 401

Launching app from Google assistant via Dialogflow

I'm using Dialogflow to interact with my users (they can ask questions, ask to receive reports etc...) and I would like to launch an Android application when they invoke one the intents I created, is there a way to that?

Upvotes: 3

Views: 926

Answers (1)

Prisoner
Prisoner

Reputation: 50731

Short answer: Not really.

Longer answer: While you can't have one of your Actions trigger any Android Intent directly, you do have a few options to strongly suggest to a user that they do so. For example:

  1. You can use something like Firebase Cloud Messaging (FCM) to trigger a notification/event.

  2. If you're relying on the screen of the Android device, you can send a card that includes a URL, and that URL can deep link into your application if you've configured it.

Upvotes: 3

Related Questions