Enable Telnyx real-time communication services on Android 📞 🔥
- SDK project: sdk module, containing all Telnyx SDK components as well as tests.
- Demo application: app module, containing a sample demo application utilizing the sdk module.
-
Clone the repository
-
Open the cloned repository in Android Studio and hit the build button to build both the sdk and sample app:
-
Connect a device or start an emulated device and hit the run button
-
Enjoy 😎
Have a look at our Jetpack Compose reference application here
In order to start making and receiving calls using the TelnyxRTC SDK you will need to get SIP Credentials:
- Access to https://portal.telnyx.com/
- Sign up for a Telnyx Account.
- Create a Credential Connection to configure how you connect your calls.
- Create an Outbound Voice Profile to configure your outbound call settings and assign it to your Credential Connection.
For more information on how to generate SIP credentials check the Telnyx WebRTC quickstart guide.
NOTE: Remember to add and handle INTERNET, RECORD_AUDIO and ACCESS_NETWORK_STATE permissions
To initialize the TelnyxClient you will have to provide the application context. Once an instance is created, you can call the .connect() method to connect to the socket. An error will appear as a socket response if there is no network available:
telnyxClient = TelnyxClient(context)
telnyxClient.connect()
To log into the Telnyx WebRTC client, you'll need to authenticate using a Telnyx SIP Connection. Follow our quickstart guide to create JWTs (JSON Web Tokens) to authenticate. To log in with a token we use the tokinLogin() method. You can also authenticate directly with the SIP Connection username
and password
with the credentialLogin() method:
telnyxClient.tokenLogin(tokenConfig)
//OR
telnyxClient.credentialLogin(credentialConfig)
Note: tokenConfig and credentialConfig are data classes that represent login settings for the client to use. They look like this:
sealed class TelnyxConfig
/**
* Represents a SIP user for login - Credential based
*
* @property sipUser The SIP username of the user logging in
* @property sipPassword The SIP password of the user logging in
* @property sipCallerIDName The user's chosen Caller ID Name
* @property sipCallerIDNumber The user's Caller ID Number
* @property fcmToken The user's Firebase Cloud Messaging device ID
* @property ringtone The integer raw value or uri of the audio file to use as a ringtone. Supports only raw file or uri
* @property ringBackTone The integer raw value of the audio file to use as a ringback tone
* @property logLevel The log level that the SDK should use - default value is none.
* @property autoReconnect whether or not to reattempt (3 times) the login in the instance of a failure to connect and register to the gateway with valid credentials
*/
data class CredentialConfig(
val sipUser: String,
val sipPassword: String,
val sipCallerIDName: String?,
val sipCallerIDNumber: String?,
val fcmToken: String?,
val ringtone: Any?,
val ringBackTone: Int?,
val logLevel: LogLevel = LogLevel.NONE,
val autoReconnect : Boolean = true
) : TelnyxConfig()
/**
* Represents a SIP user for login - Token based
*
* @property sipToken The JWT token for the SIP user.
* @property sipCallerIDName The user's chosen Caller ID Name
* @property sipCallerIDNumber The user's Caller ID Number
* @property fcmToken The user's Firebase Cloud Messaging device ID
* @property ringtone The integer raw value or uri of the audio file to use as a ringtone. Supports only raw file or uri
* @property ringBackTone The integer raw value of the audio file to use as a ringback tone
* @property logLevel The log level that the SDK should use - default value is none.
* @property autoReconnect whether or not to reattempt (3 times) the login in the instance of a failure to connect and register to the gateway with a valid token
*/
data class TokenConfig(
val sipToken: String,
val sipCallerIDName: String?,
val sipCallerIDNumber: String?,
val fcmToken: String?,
val ringtone: Any?,
val ringBackTone: Int?,
val logLevel: LogLevel = LogLevel.NONE,
val autoReconnect : Boolean = true,
) : TelnyxConfig()
In order to make a call invitation, you need to provide your callerName, callerNumber, the destinationNumber (or SIP credential), and your clientState (any String value).
telnyxClient.call.newInvite(callerName, callerNumber, destinationNumber, clientState)
In order to be able to accept a call, we first need to listen for invitations. We do this by getting the Telnyx Socket Response as LiveData:
fun getSocketResponse(): LiveData<SocketResponse<ReceivedMessageBody>>? =
telnyxClient.getSocketResponse()
We can then use this method to create a listener that listens for an invitation - in this example we assume getSocketResponse is a method within a ViewModel.
mainViewModel.getSocketResponse()
?.observe(this, object : SocketObserver<ReceivedMessageBody>() {
override fun onConnectionEstablished() {
// Handle a succesfully established connection
}
override fun onMessageReceived(data: ReceivedMessageBody?) {
when (data?.method) {
SocketMethod.CLIENT_READY.methodName -> {
// Fires once client has correctly been setup and logged into, you can now make calls.
}
SocketMethod.LOGIN.methodName -> {
// Handle a successful login - Update UI or Navigate to new screen, etc.
}
SocketMethod.INVITE.methodName -> {
// Handle an invitation Update UI or Navigate to new screen, etc.
// Then, through an answer button of some kind we can accept the call with:
val inviteResponse = data.result as InviteResponse
mainViewModel.acceptCall(inviteResponse.callId, inviteResponse.callerIdNumber)
}
SocketMethod.ANSWER.methodName -> {
//Handle a received call answer - Update UI or Navigate to new screen, etc.
}
SocketMethod.BYE.methodName -> {
// Handle a call rejection or ending - Update UI or Navigate to new screen, etc.
}
SocketMethod.RINGING.methodName -> {
// Client Can simulate ringing state
}
SocketMethod.RINGING.methodName -> {
// Ringback tone is streamed to the caller
// early Media - Client Can simulate ringing state
}
}
}
override fun onLoading() {
// Show loading dialog
}
override fun onError(message: String?) {
// Handle errors - Update UI or Navigate to new screen, etc.
}
override fun onSocketDisconnect() {
// Handle disconnect - Update UI or Navigate to login screen, etc.
}
})
When we receive a call we will receive an InviteResponse data class that contains the details we need to accept the call. We can then call the acceptCall method in TelnyxClient from our ViewModel:
The Telnyx WebRTC SDK allows for multiple calls to be handled at once. You can use the callId to differentiate the calls..
import java.util.UUID
// Retrieve all calls from the TelnyxClient
val calls: Map<UUID,Call> = telnyxClient.calls
// Retrieve a specific call by callId
val currentCall: Call? = calls[callId]
With the current call object, you can perform actions such as:
- Hold/UnHold
currentCall.onHoldUnholdPressed(callId: UUID)
- Mute/UnMute
currentCall.onMuteUnmutePressed()
- AcceptCall
currentCall.acceptCall(...)
- EndCall
currentCall.endCall(callId: UUID)
The Telnyx Android Client WebRTC SDK makes use of Firebase Cloud Messaging in order to deliver push notifications. If you want to receive notifications for incoming calls on your Android mobile device you have to enable Firebase Cloud Messaging within your application.
In order to do this you need to:
1. Set up a Firebase console account
2. Create a Firebase project
3. Add Firebase to your Android Application
4. Setup a Push Credential within the Telnyx Portal
5. Generate a Firebase Cloud Messaging instance token
6. Send the token with your login message
Finally, you will need to provide the connect(..)
method with a txPushMetaData
value retrieved from push notification.
The txPushMetaData
is neccessary for push notifications to work.
telnyxClient = TelnyxClient(context)
telnyxClient.connect(txPushMetaData)
For a detailed tutorial, please visit our official Push Notification Docs
-
Handling Push Notifications : In order to properly handle push notifications, we recommend using a call type (Foreground Service)[https://developer.android.com/develop/background-work/services/foreground-services] with broadcast receiver to show push notifications. An answer or reject call intent with
telnyxPushMetaData
can then be passed to the MainActivity for processing.- Play a ringtone when a call is received from push notification using the
RingtoneManager
val notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE) RingtoneManager.getRingtone(applicationContext, notification).play()
- Make Sure to set these flags for your pendingIntents, so the values get updated anytime when the notification is clicked
PendingIntent.FLAG_MUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
In order to receive push notifications on Android 14, you will need to add the following permissions to your AndroidManifest.xml file and request a few at runtime:
// Request this permission at runtime <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> // If you need to use foreground services, you will need to add the following permissions <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> <uses-permission android:name="android.permission.FOREGROUND_SERVICE_PHONE_CALL"/> // Configure foregroundservice and set the foreground service type // Remember to stopForegroundService when the call is answered or rejected <service android:name=".ForegroundService" android:foregroundServiceType="phoneCall" android:exported="true" />
- Play a ringtone when a call is received from push notification using the
-
Handling Multiple Calls : The Telnyx WebRTC SDK allows for multiple calls to be handled at once.
You can use the callId to differentiate the calls.import java.util.UUID // Retrieve all calls from the TelnyxClient val calls: Map<UUID,Call> = telnyxClient.calls // Retrieve a specific call by callId val currentCall: Call? = calls[callId]
NOTE: In the case that you need to modify your application's proguard settings in order to obfuscate your code, such as we have done below:
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
jniDebuggable true
}
debug {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
debuggable true
jniDebuggable true
}
}
please keep in mind that you will need to add the following rules to the proguard-rules.pro file in your app in order for the SDK to continue functioning
-keep class org.webrtc.** { *; }
-keep class com.telnyx.webrtc.sdk.** { *; }
Questions? Comments? Building something rad? Join our Slack channel and share.