all property

Set of all defined Android permissions.

Implementation

static final Set<AndroidPermissionDef> all = {
  // Camera
  camera,
  // Microphone
  microphone,
  // Location
  accessFineLocation,
  accessCoarseLocation,
  accessBackgroundLocation,
  // Contacts
  readContacts,
  writeContacts,
  getAccounts,
  // Calendar
  readCalendar,
  writeCalendar,
  // Phone
  readPhoneState,
  readPhoneNumbers,
  callPhone,
  answerPhoneCalls,
  readCallLog,
  writeCallLog,
  addVoicemail,
  // Storage
  accessMediaLocation,
  // Media
  readMediaImages,
  readMediaVideo,
  readMediaAudio,
  // Manage External Storage
  manageExternalStorage,
  // SMS
  sendSms,
  receiveSms,
  readSms,
  receiveWapPush,
  receiveMms,
  // Battery
  ignoreBatteryOptimizations,
  // Network
  internet,
  accessNetworkState,
  accessWifiState,
  changeWifiState,
  nearbyWifiDevices,
  // Bluetooth
  bluetoothConnect,
  bluetoothScan,
  bluetoothAdvertise,
  // Sensors
  bodySensors,
  bodySensorsBackground,
  // System / Misc
  vibrate,
  wakeLock,
  systemAlertWindow,
  foregroundService,
  scheduleExactAlarm,
  postNotifications,
  requestInstallPackages,
  nfc,
  // Activity Recognition
  activityRecognition,
};