Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

Permission.RequestUserPermission

public static void RequestUserPermission(string permission);

Parameters

permissionA string that describes the permission to request. For permissions which Unity has not predefined you may also manually provide the constant value obtained from the Android documentation here: https://developer.android.com/guide/topics/permissions/overview#permission-groups such as "android.permission.READ_CONTACTS".

Description

Request that the user grant access to a device resource or information that requires authorization.

using UnityEngine;
using UnityEngine.Android;

public class RequestPermissionScript : MonoBehaviour { void Start() { if (Permission.HasUserAuthorizedPermission(Permission.Microphone)) { // The user authorized use of the microphone. } else { // We do not have permission to use the microphone. // Ask for permission or proceed without the functionality enabled. Permission.RequestUserPermission(Permission.Microphone); } } }

Did you find this page useful? Please give it a rating: