admin管理员组

文章数量:1346036

i am trying to create a studio project, to have my app open with google assistant, if i can do it i would like to do the same thing with siri.

My objective is to say Ok google open notaio, and thus open my app

i created a very simple project with two views.

i created a rooter to go to the main and second view. i modified my manifest.

I added an actions.xml, a shortcuts.xml and a strings.

If I try to open the app from the terminal with the command adb shell am start -a android.intent.action.VIEW -d ‘notaio://open’
the app opens correctly

Then I connected the project to my firebase.

I verified that it works by adding a button that adds a string to the firebase database.

I then created a project within Actions Console, the project is attached to the firebase project so they have the same Project ID.

Within Actions Console I went to Develop and then Add Action which eventually takes me to dialogflow.

In dialogflow I created an Intents, with basic praxes such as ‘open my notaio’ or ‘open notaio app’ or "open notaio"

I ran the tests

I also added a response (for testing purposes), enabled ‘Webhook call for this intent’.

I get the tests in the Hystory

But then when I go to do the tests instead of opening my app it opens the search.

In the Hystory of Dialogflow I do not see the request from the phone

I have also added logs inside the main and rooter, but practically if I use OK GOOLGLE I never access the app

Obviously Google Assistent is active on my phone, and the app appears in the list of Google Assistant apps and the language is the same as Dialogflow.

I asked gemini and chatgpt and they show me the same steps

One of them also had me add an assetlinks file on firebase hosting and added this with permissions to my manifest, but nothing has changed.

I have also changed the name of the app several times thinking that the assistant doesn't understand it.

The only thing I haven't changed is the project namespace, which also appears in firebase.

Chatgpt asks me to check if it is the same in Dialogflow, but there in the settings I only found the project name and the project id which is the same as in firebase, where I have the correct namespace.

I honestly thought it would be easier but after a week of testing and several projects from 0 I don't understand what I'm missing

Do you have any advice on what I'm doing wrong or what I'm fetting.

I am working with Visual Code in the Android part of my Flutter project

Git Repository

Thanks

<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:android=";>
<shortcut android:shortcutShortLabel="@string/shortcut_open_kivia"
          android:shortcutId="openNotaio">
    <intent
        android:action="android.intent.action.VIEW"
        android:data="notaio://open" />
    <capability-binding android:capability="actions.intent.OPEN_APP">
        <parameter-binding android:key="appName" android:value="Notaio"/>
    </capability-binding>
</shortcut>
<shortcut android:shortcutShortLabel="@string/shortcut_open_dossier"
          android:shortcutId="openDossier">
    <intent
        android:action="android.intent.action.VIEW"
        android:data="notaio://open/dossiers" />
    <capability-binding android:capability="actions.intent.OPEN_APP_FEATURE">
        <parameter-binding android:key="appName" android:value="Notaio"/>
    </capability-binding>
</shortcut>
 <?xml version="1.0" encoding="utf-8"?>
   <actions>
 
  <action intentName="actions.intent.OPEN_APP">
    <fulfillment urlTemplate="notaio://open"/>
    <parameter name="appName" type="string">
      <prompt>Notaio</prompt>
    </parameter>
  </action>

 
  <action intentName="actions.intent.OPEN_APP_FEATURE">
    <fulfillment urlTemplate="notaio://open/dossiers?name={dossierName}">
      <parameter-mapping
        intentParameter="dossierName"
        urlParameter="dossierName"/>
    </fulfillment>
    <parameter name="appName" type="string">
      <prompt>Notaio</prompt>
    </parameter>
  </action>
</actions>


<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Notaio</string>
<string name="shortcut_open_kivia">Apri Notaio</string>
<string name="shortcut_open_dossier">Apri Dossier</string>
</resources> 


import 'dart:developer';

import 'package:flutter/material.dart';
import 'package:siri_google_assistent/dossiers.dart';
import 'package:siri_google_assistent/main.dart';

class MainRouter {
  static Route<dynamic> generateRoute(RouteSettings settings) {
    try {
      Uri uri = Uri.tryParse(settings.name ?? "") ?? Uri();

      // Log dettagliato per debug
      log('Parsed URI: $uri', name: 'MainRouter');
      log('URI scheme: ${uri.scheme}', name: 'MainRouter');
      log('URI host: ${uri.host}', name: 'MainRouter');
      log('URI path: ${uri.path}', name: 'MainRouter');
      log('URI queryParameters: ${uri.queryParameters}', name: 'MainRouter');

      
      if (uri.path == '/dossiers') {
        String? dossierName = uri.queryParameters['name'];

        log('Navigating to Dossiers with name: $dossierName',
            name: 'MainRouter');

        return MaterialPageRoute(
          builder: (_) => Dossiers(dossierName: dossierName),
        );
      }


      if (uri.path.isEmpty || uri.path == '/') {
        return MaterialPageRoute(
          builder: (_) => const MyHomePage(title: 'Flutter Demo Home Page'),
        );
      }

      
      switch (settings.name) {
        case '/dossiers':
          return MaterialPageRoute(builder: (_) => const Dossiers());
        default:
          return MaterialPageRoute(
            builder: (_) => Scaffold(
              body: Center(
                child: Text('Nessuna rotta definita per ${settings.name}'),
              ),
            ),
          );
      }
    } catch (e, stackTrace) {
      log('Errore durante la navigazione: $e',
          name: 'MainRouter', error: e, stackTrace: stackTrace);
      return MaterialPageRoute(
        builder: (_) => Scaffold(
          body: Center(
            child: Text('Errore durante la navigazione: $e'),
          ),
        ),
      );
    }
  }
}

本文标签: androidGoogle assistent does not open my app but shows a searchStack Overflow