Documentation

​
​

Development

User Acquisition

Monetization

Industry

Vivox Unity SDK

Vivox Unity SDK

Vivox
​
​
Vivox Unity SDK
  • Overview
  • Get started
  • Release notes
  • Developer guide
    • Set up your project
    • Create voice and text channels
    • Messaging
    • Player management
    • Device management
    • Audio management
    • Mobile development
      • Android app development
        • Android SDK permission requirements
        • Request runtime permissions
        • Android speakerphone audio: Mono or stereo
        • ProGuard rules
        • Troubleshooting Bluetooth SCO underrun issues
      • iOS app development
    • Text-to-speech
    • Speech-to-text
    • Real-time recording
    • Server-side-recording
    • Troubleshooting
  • Tutorials
  • Reference
  1. Vivox Unity SDK documentation
  2. Vivox Unity Developer Guide

Android Sdk Permission Requirements

Understand Android SDK permission requirements for Vivox.
Read time 1 minute
Last updated 8 months ago

The following permission requirements apply when working with the Vivox Android SDK:
  • Required
    • android.permission.INTERNET
      - Allows communication with Vivox servers
    • android.permission.RECORD_AUDIO
      - Allows microphone access
      For more information, refer to the Android developer documentation on requesting app permissions.
  • Recommended
    Note
    Not giving these permissions might prevent some Vivox SDK features from working properly.
    • android.permission.MODIFY_AUDIO_SETTINGS
    • android.permission.ACCESS_NETWORK_STATE
      - Allows access to network information
    • android.permission.ACCESS_WIFI_STATE
      - Allows access to Wi-Fi information
    • android.permission.BLUETOOTH
      - Allows access to Bluetooth devices on Android versions earlier than 12
    • android.permission.BLUETOOTH_CONNECT
      - Allows access to Bluetooth devices on Android version 12 and later
      Note
      On Android 12 (Android SDK version 31) and later, you need to request the android.permission.BLUETOOTH_CONNECT permission at runtime. For more information, refer to the Android developer documentation on Bluetooth permissions.
These permissions will be given by default to your app after it is compiled with the Vivox SDK.
To remove optional permissions that you don't want in your application, you need to have a custom AndroidManifest.xml file for your application. To create this file, complete the following steps:
  1. Open your project in the Unity Editor.
  2. Select Edit > Project Settings.
  3. On the Player tab, open the Android section.
  4. In the Publishing Settings section, enable the Build > Custom Main Manifest checkbox.
    The file will generate in your assets, and its path will display after the checkbox.
When you have a custom
AndroidManifest.xml
file, you can add the permission tag to it and specify
tools:node”remove”
to ensure that, for example,
android.permission.BLUETOOTH_CONNECT
is not included:
<uses-permission android:name="android.permission.BLUETOOTH" tools:node="remove" />

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