android - Place a SIP call via Intent -


I am writing an Android application that will keep a SIP call. I want to use the original Android SIP API and have found the document under it:

  • and
  • However, Regsiter sip provider and start the call, it seems that it is very low-level. I just want to close the basic Android phone app to SIP calls and give it a sip address to call it and assume that User SIP account already in Android phone app Has registered.

    I thought there should be an intent for it, as if I could provide a SIP address such as:

      Uri phonocol = Uri.prep ("TEL: 1234567890 "); Intentional caller = new intent (Intent.ACTION_DIAL, phone call); StartActivity (callers);   

    But my experiment failed. Do I have to use SipManager or can I use an intent? Assume that you have already created a global SIP account:

    Ury Phonecall = Uri.pars ("SIP: [number] @ [domain]");

    Replace number and domain with just reasonable prices.

Comments

Popular posts from this blog

Python SQLAlchemy:AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema' -

java - How not to audit a join table and related entities using Hibernate Envers? -

mongodb - CakePHP paginator ignoring order, but only for certain values -