Audio & Video calling
The Develotex SDK is a product that makes adding voice calling and/or instant messaging to mobile apps easy. Continue reading this step-by-step guide now.
The Develotex SDK is a product that makes adding voice calling to mobile apps easy. It handles all the complexity of signaling and audio management while providing you the freedom to create a stunning user interface.
This document provides an overview for developers integrating with Develotex SDK for the first time. It outlines the prerequisites and guides you through the process of setting up and answering calls.
Please see the Reference Documentation for a comprehensive description of all the classes.
Swift Objective-C Java Kotlin JavaScript
                                                        
1  import clx.xms
2  import requests
3
4  client = clx.xms.Client(service_plan_id='{spid}', 5   
5  token='{token}')
6
7  create = clx.xms.api.MtBatchTextSmsCreate()
8  create.sender = '12345'
9  create.recipients = {'46123123123'}
10 create.body = 'Hello, world!'
11
12 try:
13   batch = client.create_batch(create)
14 except (requests.exceptions.RequestException,
15    clx.xms.exceptions.ApiException) as ex:
16    print('Failed to communicate with XMS: %s' % str(ex))
                                                        
                                                    
                                                        
NSMutableArray *aMutableArray = [[NSMutableArray alloc]init];
[anArray addObject:@"firstobject"];
NSArray *aImmutableArray = [[NSArray alloc]
initWithObjects:@"firstObject",nil];                               
                                                        
                                                    
                                                        
public class SwapNumbers {

    public static void main(String[] args) {

        float first = 1.20f, second = 2.45f;

        System.out.println("--Before swap--");
        System.out.println("First number = " + first);
        System.out.println("Second number = " + second);
    }

}
                                                        
                                                    
                                                        
fun generateAnswerString(): String {
    val answerString = if (count == 42) {
        "I have the answer."
    } else {
        "The answer eludes me"
    }

    return answerString
}
                                                        
                                                    
                                                        
addEventListener('load', () => {
    const code = document.querySelector('#code');
    const worker = new Worker('worker.js');
    worker.onmessage = (event) => { code.innerHTML = event.data; }
    worker.postMessage(code.textContent);
});
                                                        
                                                    
You can also download the entire iOS SDK.
See develotex/develotex-ios-sdk on GitHub.