react-native-full-battery-status
NOTE: For now, it only works on Android
Getting started
$ npm install react-native-full-battery-status --save
or
$ yarn add react-native-full-battery-status
Mostly automatic installation
$ react-native link react-native-full-battery-status
Manual installation
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.benvgroup.RNFullBatteryStatusPackage;
to the imports at the top of the file - Add
new RNFullBatteryStatusPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-full-battery-status' project(':react-native-full-battery-status').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-full-battery-status/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-full-battery-status')
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-full-battery-status
and addRNFullBatteryStatus.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNFullBatteryStatus.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)
Usage
import RNFullBatteryStatus from 'react-native-full-battery-status';
getHealthStatus()
Returns: // COLD, GOOD, DEAD, OVER_VOLTAGE, OVER_HEAT
getChargingStatus()
Returns: // CHARGING, DISCHARGING, FULL, NOT_CHARGING, UNKNOWN
getTechnology()
Returns: // WIRELESS, AC, USB, NONE
getBatteryPercent()
Returns: // eg => 43
getTemperature()
Returns: // eg => 30.5
getVoltage()
Returns: // eg => 3851
Current progress
- [x] Android interfaces
- [ ] iOS interfaces;
- [ ] Tests