I am looking for a way to trigger the Amazon Alexa official application for Android to search for given query.
I am able to launch the Amazon Alexa to trigger Alexa to listen for voice command via below code
String activityAction = "android.intent.action.ASSIST";
Intent intent = new Intent(activityAction);
intent.setPackage("com.amazon.dee.app");
MainActivity.this.getApplicationContext().startActivity(intent)
Yet - i am looking for a way to pass a query string via this intent, so Alexa app would immediate search for it.
Thanks in advance, Gal.