Android Create Sip Account Programmatically
In my application I want to have one Activity that enables user to add his SIP account parameters in fields. I don't want them to go Settings->Call->Internet Call Settings-&g
Solution 1:
Why not start the system sip settings activity, and they don't have to navigate trough the system, but can add the account to system.
if (SipManager.isVoipSupported(this) && SipManager.isApiSupported(this)){
// SIP is supported, let's go!
Intent intent = new Intent();
intent.setAction("android.intent.action.MAIN");
intent.setComponent(ComponentName.unflattenFromString("com.android.phone/.sip.SipSettings"));
startActivity(intent); }
Post a Comment for "Android Create Sip Account Programmatically"