简体   繁体   中英

DeepLink link from Action in Google Assistant when Android app is not present?

I read in the documentation that it's possible to open Android App using DeepLink : https://actions-on-google.github.io/actions-on-google-nodejs/classes/conversation_helper.deeplink.html

conv.ask(new DeepLink({
  destination: 'Google',
  url: 'example://gizmos',
  package: 'com.example.gizmos',
  reason: 'handle this for you',
}));

I wonder what happens if the user does not have target app installed on their phone?

Nothing will happen.

the app must be installed in the device, also it has to include an activity in the manifest file, with the suitable intent filter in order to detect the deeplink.

you can read more about here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM