Android O 为应用添加默认权限,进入应用时不需要请求 Permissions exemption

On Android O some of the critical permissions requested need to be declared separately in platform permissions otherwise they will not be granted to the client. Please add the following permissions in vendor\mediatek\proprietary\frameworks\base\data\etc\ privapp-permissions-mediatek.xml

  package="com.redbend.client">
  name="android.permission.DELETE_PACKAGES"/>
  name="android.permission.MANAGE_DEVICE_ADMINS"/>
  name="android.permission.INTERACT_ACROSS_USERS"/>
  name="android.permission.RECOVERY"/>
  name="android.permission.MANAGE_USERS"/>
  name="android.permission.ACCESS_CACHE_FILESYSTEM"/>
  name="android.permission.REBOOT"/>
  name="android.permission.INSTALL_PACKAGES"/>
 

你可能感兴趣的:(android)