AutoJs6
AutoJs6 copied to clipboard
忽略电池优化不生效
已经设置成忽略电池优化,但是选项没有勾选,设备小米11Pro
目前网上能查到的方法, 都是目前 AutoJs6 一直沿用的方法 (使用 ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS).
我不知道小米设备现在的忽略电池优化页面是什么样的, 是否也是有三个选项:
PS: 这个页面我没找到直接跳转的代码方式.
Intent intent = new Intent();
intent.setComponent(new ComponentName(
"com.miui.powerkeeper",
"com.miui.powerkeeper.ui.HiddenAppsContainerManagementActivity"));
startActivity(intent);
网上找到了一种针对小米设备的跳转方式, 但我没有测试设备, 不知道具体作用是什么, 你可以参考着尝试一下.