requestInstallPackages constant

AndroidPermissionDef const requestInstallPackages

android.permission.REQUEST_INSTALL_PACKAGES

Required to install APK packages from sources other than the Play Store. Runtime permission: true Since SDK: 26 Group: request_install_packages

Implementation

static const requestInstallPackages = AndroidPermissionDef(
  'android.permission.REQUEST_INSTALL_PACKAGES',
  sinceSDK: 26,
  runtime: true,
  group: 'request_install_packages',
  keywords: {'install', 'apk', 'sideload', 'packages'},
  docNotes: {
    'Required to install APK packages from sources other than the Play Store',
  },
);