I am trying to start video/audio call using Google Duo from my app by clicking a certain button. I can successfully start audio/video call on WhatsApp but not on Google Duo.
long id= 133;
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
// the _ids you save goes here at the end of /data/
intent.setDataAndType(Uri.parse("content://com.android.contacts/data/"+id),
"vnd.android.cursor.item/com.google.android.apps.tachyon.phone.audio");
intent.setPackage("com.google.android.apps.tachyon");
startActivity(intent);