Back to project page restcomm-android-sdk.
The source code is released under:
GNU General Public License
If you think the Android project restcomm-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.mobicents.restcomm.android.sdk; public interface ISipManager { public void SendMessage(String to, String message) throws NotInitializedException; public void SendDTMF(String digit) throws NotInitializedException; public void Register(); public void Call(String to, int localRtpPort) throws NotInitializedException; }