0

i'm trying to make a video call from one mobile to another mobile through my app. For this i followed different approaches available in online, like

  1. java2s i included all files as they suggested in the description (Above the download header) but they forgot to include OnCameraViewListener file. So, i'm not able to run this project (For my code please see this link)
  2. I fallowed link1, link2 and many but nothing was helpful for me.

So, any one please help me to make a video call from android app

Community
  • 1
  • 1
Bahu
  • 1,516
  • 2
  • 28
  • 49

1 Answers1

0

I tried to make a video call from my app but it's not able to achieve at this time so i used skype for this

Code:

Intent skypeVideo = new Intent("android.intent.action.VIEW");
skypeVideo.setData(Uri.parse("skype:" + "endUserSkypeId" + "?call&video=true"));
context.startActivity(skypeVideo);
Bahu
  • 1,516
  • 2
  • 28
  • 49