Suggestions

close search
Speed up your development
Create a Fast Track

Add Messaging, Voice, and Authentication to your apps with Vonage Communications APIs

Visit the Vonage API Developer Portal

Mobile Guidelines — Android

This topic addresses considerations when developing for an Android device:

Permissions

For permissions required by the OpenTok Android SDK, see the Permissions section of the Android SDK overview.

Creating a VoIP app using the Android ConnectionService

Use the Android ConnectionService class to create a VoIP app that uses the audio-video capabilities of the OpenTok Android SDK.

At a minimum, follow these guidelines to create a basic VoIP app:

See the sample VOIP app in the opentok-android-sdk-samples repo. It shows how to implement the ConnectionService class to create a VoIP app that uses the OpenTok Android SDK.

Setting up foreground services

Foreground services let you asynchronously perform operations that are noticeable to the user. Foreground services show a status bar notification, to make users aware that your app is performing a task in the foreground and is consuming system resources. Examples of use cases that use foreground services include:

Foreground Services Types

Android 10 introduced the android:foregroundServiceType attribute within the element. The idea of it is to explicitly specify what kind of work the service does.

Android 14 makes specifying the foreground service type mandatory. This is to ensure the correct usage of foreground services and consistency across device manufacturers.

The currently supported types are:

Declare foreground service type

The first step in supporting Android 14 is to update your service declaration in the AndroidManifest file and specify the correct foreground service type.

If your service requires multiple types, you can combine them using the | operator like this:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" ...>
    <service
        android:name=".MyForegroundService"
        android:foregroundServiceType="microphone|camera"
        android:exported="false">
    </service>
</manifest>

If you try to start a foreground service without declaring its type in the manifest, the system will throw a MissingForegroundServiceTypeException upon calling startForeground().

Request specific foreground service permissions

From Android 9 (API 28) onwards, apps had to request the FOREGROUND_SERVICE permission in the app manifest, which was granted automatically by the system.

<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>

Starting from Android 14 (API 34), apps need to additionally request specific permissions depending on the type of the foreground service. So, if your service keeps accessing the microphone in the background, you need to specify FOREGROUND_SERVICE_MICROPHONE. The permission is automatically granted by the system.

<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MICROPHONE"/>

If your service requires multiple types, you have to declare this permission for each type.

If you forget to declare either of the two permissions, you will receive a SecurityException with the exact reason.

Launch a foreground service

Depending on the API level used, start the service as in the following:

Intent serviceIntent = new Intent(this, MyForegroundService.class);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { // Android 8.0 (API 26) and above
    startForegroundService(serviceIntent);
} else { // Android 7.0 (API 24, 25)
    startService(serviceIntent);
}

The code snippet launches a service. However, the service is not yet running in the foreground. Inside the service itself, you need to call startForeground() to promote the service to a foreground service. If you are using AndroidX, you need to call ServiceCompat.startForeground().

Provide details of your use case on Google Play Console

After you upload the new version of the app that targets Android 14 and uses a foreground service type to the Google Play Console, you will see a prompt in your console to provide additional details about your usage.

As Google wants to make sure that apps are using foreground services appropriately, you will need to submit a new declaration on the App content page (Policy -> App content).

For each foreground service type you declare, you’ll need to do the following:

Sample app and more information

See the Basic-Video-Chat-With-ForegroundServices-Java sample in the opentok-android-sdk-samples repo.

Read more in the Android Foreground Services Overview documentation.

More information

For more information, see: