I am using S8/S8+. I want to call bibxy app from the Intent. However, I cannot call it. How can I call it from Intent?
This is what I try
final String SVOICE_PACKAGE_NAME = "com.samsung.voiceserviceplatform";
final Intent intent = new Intent();
intent.setPackage(SVOICE_PACKAGE_NAME);
intent.setAction(Intent.ACTION_VOICE_COMMAND);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
getApplication().startActivity(intent);