Documentation

​
​

Development

User Acquisition

Monetization

Industry

Vivox Unreal SDK

Vivox Unreal SDK

Vivox
​
​
Vivox Unreal SDK
  • Overview
  • Get started
  • Release notes
  • Developer guide
    • Set up your project
    • Unity Authentication Service in Unreal
    • Create voice and text channels
    • Messaging
    • Audio management
    • Muting
    • In-game moderation
    • Android app development
      • Android SDK permission requirements
      • Request runtime permissions
      • Android speakerphone audio: Mono or stereo
      • Troubleshooting Bluetooth SCO underrun issues
    • iOS app development
    • Server-side recording
    • Speech-to-text audio transcription
    • Text-to-speech
    • Real-time recording
    • Transmission
    • Troubleshooting
  • Tutorials
  • Reference
  1. Vivox Unreal SDK documentation

Request runtime permissions

Request runtime permissions for microphone access on Android.
Read time 1 minute
Last updated 8 months ago

To ensure that your Unreal Android application will properly work with the Vivox SDK, you need to request the
android.permission.RECORD_AUDIO
and, on Android 12 and later, the
android.permission.BLUETOOTH_CONNECT
permissions at runtime. To do this, use
UAndroidPermissionFunctionLibrary::CheckPermission
to check if these permissions are granted, and
UAndroidPermissionFunctionLibrary::AcquirePermissions
to request the permission for the user.
The following code is an example of this process:
#if PLATFORM_ANDROIDconst FString BluetoothConnectPermission = TEXT("android.permission.BLUETOOTH_CONNECT");if (!UAndroidPermissionFunctionLibrary::CheckPermission(BluetoothConnectPermission)) { permissions.Add(BluetoothConnectPermission); UAndroidPermissionFunctionLibrary::AcquirePermissions(permissions);}#endif
You also need to add the
AndroidPermission
module into the dependency in the
[PROJECT].build.cs
file. For example:
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "AndroidPermission" });
For more information on how to request permissions by using the Blueprint API, refer to the the Unreal documentation on Android Permission.

Copyright © 2026 Unity Technologies
LegalPrivacy PolicyCookiesDocumentation Terms of UseDo Not Sell or Share My Personal InformationYour Privacy Choices (Cookie Settings)

"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S and elsewhere (more info here). Other names or brands are trademarks of their respective owners.

Some pages are machine-translated for convenience, and may contain inaccuracies. In the event of conflicting information, the English version is authoritative.


    Report a problem with this page