I trying to make a group audio call from my android application using Skype. My code snippet is:
// Create the Intent from our Skype URI.
Uri skypeUri = Uri.parse(mySkypeUri);
Intent myIntent = new Intent(Intent.ACTION_VIEW,"skype:joyal.test;joyal.test2?call");
myIntent.setComponent(new ComponentName("com.skype.raider", "com.skype.raider.Main"));
myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
myContext.startActivity(myIntent);
By calling above lines it creates a Skype group with the users mentioned in Uri and initiate the call, and automatically the call ends suddenly. I tried various methods, getting the same response - the call is disconnecting automatically.
I need to host the Skype group call from my application in Android.