1.0.2 • Published 7 years ago
react-native-power-manager v1.0.2
react-native-power-manager
Getting started
$ npm install react-native-power-manager --save
Mostly automatic installation
$ react-native link react-native-power-manager
Manual installation
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNPowerManagerPackage;
to the imports at the top of the file - Add
new RNPowerManagerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-power-manager' project(':react-native-power-manager').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-power-manager/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-power-manager')
Usage
import RNPowerManager from 'react-native-power-manager';
RNPowerManager.isHasProtectManager().then((deviceInfo)=>{
if(deviceInfo){
const { package, class } = deviceInfo;
RNPowerManager.startIntent(package, class);
}
});
RNPowerManager;