This becomes a voice call:
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:01012345678"));
intent.putExtra(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE,VideoProfile.STATE_BIDIRECTIONAL);
How do I make a video call?
This becomes a voice call:
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:01012345678"));
intent.putExtra(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE,VideoProfile.STATE_BIDIRECTIONAL);
How do I make a video call?
Intent videocall= new Intent("com.android.phone.videocall");
videocall.putExtra("videocall", true);
videocall.setData(Uri.parse("tel:" + [your number]));
activity.startActivity(videocall);