Language

CapturePolicies Enum

Definition

public enum CapturePolicies
type CapturePolicies = 
Inheritance
CapturePolicies

Fields

Name Value Description
ByAll 1

Indicates that the audio may be captured by any app. For privacy, the following usages cannot be recorded: VOICE_COMMUNICATION*, USAGE_NOTIFICATION*, USAGE_ASSISTANCE* and USAGE_ASSISTANT. On Build.VERSION_CODES.Q, this means only USAGE_UNKNOWN, USAGE_MEDIA and USAGE_GAME may be captured. See MediaProjection and Builder.setAllowedCapturePolicy.

Android reference for android.media.AudioAttributes.ALLOW_CAPTURE_BY_ALL.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

BySystem 2

Indicates that the audio may only be captured by system apps. System apps can capture for many purposes like accessibility, live captions, user guidance... but abide to the following restrictions: - the audio cannot leave the device - the audio cannot be passed to a third party app - the audio cannot be recorded at a higher quality than 16kHz 16bit mono See Builder.setAllowedCapturePolicy.

Android reference for android.media.AudioAttributes.ALLOW_CAPTURE_BY_SYSTEM.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

ByNone 3

Indicates that the audio is not to be recorded by any app, even if it is a system app. It is encouraged to use ALLOW_CAPTURE_BY_SYSTEM instead of this value as system apps provide significant and useful features for the user (such as live captioning and accessibility). See Builder.setAllowedCapturePolicy.

Android reference for android.media.AudioAttributes.ALLOW_CAPTURE_BY_NONE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to