tgoop.com/pandora_kernel_release/242
Create:
Last Update:
Last Update:
private static final String RESCUEPARTY_PLUS_DISABLE_PROP = "persist.sys.rescuepartyplus.disable";
private static final String RESCUEPARTY_PLUS_ENABLE_PROP = "persist.sys.rescuepartyplus.enable";
static boolean checkDisableRescuePartyPlus() {
if (SystemProperties.getBoolean(RESCUEPARTY_PLUS_DISABLE_PROP, false)) {
Slog.w(TAG, "RescueParty Plus is disable!");
return true;
}
if (!SystemProperties.getBoolean(RESCUEPARTY_PLUS_ENABLE_PROP, false)) {
return false;
}
Slog.w(TAG, "This device support and enable RescuePartyPlus! (Via cloud control)");
return false;
}
可以看到,无论
persist.sys.rescuepartyplus.enable
是什么值,最终返回值都没有区别,所以并不需要关注这个prop。BY Pandora Kernel 发布
Share with your friend now:
tgoop.com/pandora_kernel_release/242