3

Can any body suggest me, any Android Intent to make SIP Call? or even third party framework/lib/app, which has the facility to be invoked using an intent and some parameters will be fine.

Kindly Note: Not regular phone call, needed intent for SIP/Internet Phone call.

Thanks In Advance.

Ganesh K
  • 2,623
  • 9
  • 51
  • 78

2 Answers2

0

1) Do you mean you want to implement a SIP app? Then, check this: http://developer.android.com/guide/topics/connectivity/sip.html

Make you app and listen to ACTION_CALL.

Or

2) Do you want to invoke a calling app? Then the usual ACTION_CALL will do. (For example, in my phone ACTION_CALL will prompt me if I want to use Skype or Phone App)

Added: I am using SipDroid in one of my phone. This is what happens when I try to make call: enter image description here

Calvin
  • 3,302
  • 2
  • 32
  • 41
0

Alternatively, if you meant to create an Intent, you could trying looking into declaring a custom scheme within an IntentFilter in your AndroidManifest.xml, such as calling an Intent with a sip:<numberToCall> will open your Activity.

deubaka
  • 1,447
  • 12
  • 22