如何获得MIUI 8+(通过编程方式)中读取“Service SMS”的许可。

最佳答案

这将启动服务短信的 Intent 。一旦用户允许访问服务短信,您就可以阅读通知短信。

if (isMIUI()) {
            //this will launch the auto start screen where user can enable the permission for your app
      Intent localIntent = new Intent("miui.intent.action.APP_PERM_EDITOR");
                    localIntent.setClassName("com.miui.securitycenter", "com.miui.permcenter.permissions.PermissionsEditorActivity");
      localIntent.putExtra("extra_pkgname", getActivity().getPackageName());
      startActivity(localIntent);
}


 public static boolean isMIUI() {
        String device = Build.MANUFACTURER;
        if (device.equals("Xiaomi")) {
            try {
                Properties prop = new Properties();
                prop.load(new FileInputStream(new File(Environment.getRootDirectory(), "build.prop")));
                return prop.getProperty("ro.miui.ui.version.code", null) != null
                        || prop.getProperty("ro.miui.ui.version.name", null) != null
                        || prop.getProperty("ro.miui.internal.storage", null) != null;
            } catch (IOException e) {
                e.printStackTrace();
            }

        }

         return false;
  }

注意:您不能以编程方式获取此权限,该权限仅允许来自MIUI列入白名单的应用程序使用。例如-默认情况下,Facebook Messenger,whatsapp,flipkart等具有自动启动选项。

09-12 03:39