react-native-battery-whitelist

2.0.1 • Public • Published

react-native-battery-whitelist

Checks if any manufacturer-specific opt-in battery optimization whitelist is available for the current Android device. Shows battery saving whitelist screen if this is the case.

Usage

import BatteryWhitelist from "react-native-battery-whitelist";
 
async function tryStartWhitelist() {
    try {
        const hasIntent = await BatteryWhitelist.hasWhitelistIntent();
        if (hasIntent) await BatteryWhitelist.startWhitelistActivity();
    } catch (error) {
        console.error(error);
    }
}

Credits

Based on https://stackoverflow.com/a/51726040/8116839

Package Sidebar

Install

npm i react-native-battery-whitelist

Weekly Downloads

2

Version

2.0.1

License

MIT

Unpacked Size

10.9 kB

Total Files

9

Last publish

Collaborators

  • angryvix