- Embed SDK framework sdkmobile.framework in your Xcode project
- Import Communicator.h header into project sources
- Get CallClient instance using getCallClientInstance method of Communicator
- Activate the sip account using activate method of CallClient
- Login parameter is formed like sip:@sip-eu.apifonica.com (ex. sip:[email protected])
- When is account activated an activation event will be send to ActivationDelegate which should be set to CallClient instance before an activation started
- Make a call using callToNumber method of CallClient instance
- More detailed information of how to use sdk is shown in our example
- Embed SDK sdkmobilej.jar and libsdkmobile.so files in your project in the way as it is shown in our example
- Import namespace com.scs.* into project java sources
- Initialize SDK calling SdkMobile.INSTANCE.initialize method
- Get CallClient instance using getCallClient method of SdkMobile.INSTANCE
- Activate the sip account using activate method of ICallClient interface
- Login parameter is formed like sip:@sip-eu.apifonica.com (ex. sip:[email protected])
- When is account activated an activation event will be send to IActivationListener which should be set to CallClient instance before an activation started
- Make a call using callToNumber method of ICallClient interface
- More detailed information of how to use sdk is shown in our example