Android Code Snippet Intent Skype Call

With this intent you can call in direct mode user into Skype:

B4X:
Dim skypeId As String = "devil-app"
Dim collegati As String = "skype:" & skypeId & "?call"
Dim skype As Intent
skype.Initialize(skype.ACTION_VIEW, collegati)
skype.SetComponent("com.skype.raider")
StartActivity(skype)
 
Last edited:
Top