I am making an app where I need to make a video call using Skype
. Can anyone help me? The code I wrote so far is:
Intent sky = new Intent("android.intent.action.VIEW");
sky.setData(Uri.parse("skype:" + playerChanged + "?call&video=true"));
sky.setComponent(new ComponentName("com.skype.raider", "com.skype.raider.Main"));
sky.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(sky);
but this code did nothing except open the Skype
app.
I need to fetch my skype contact list...