SipManager.newInstance(this) returns null

Viewed 942

I follow instruction here step by step, but when I want to get a new instance of sip manager it return null!

my device is LG G4 running android 6.0. I can run third party sip applications from google play so it means my device do support sip. but why this line return null?

SipManager manager = SipManager.newInstance(this);
1 Answers

I answered the question here in detail.

Android SIP API is not supported on all devices. This article discuss this problem in detail and suggest alternative solutions.

Related