我正在使用后台服务,它不能在某些设备上运行,因为我必须启用该应用程序的自动启动权限。我想在需要的地方自动启用自动启动权限。我正在使用此代码,但是它将我重定向到自动启动权限所在的窗口。 注意:-我想要的是,不要在设置屏幕上重定向用户。
这是我的小米代码
if (manufacturer.equalsIgnoreCase(android.os.Build.MANUFACTURER)) {
//this will open auto start screen where user can enable permission for your app
Intent intent1 = new Intent();
intent1.setComponent(new ComponentName("com.miui.securitycenter", "com.miui.permcenter.autostart.AutoStartManagementActivity"));
startActivity(intent1);
}
谢谢!