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 the getPackages()
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 add RNFullBatteryStatus.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNFullBatteryStatus.a
to your project's Build Phases
➜ Link Binary With Libraries
- Run your project (
Cmd+R
)
Usage
import RNFullBatteryStatus from 'react-native-full-battery-status';
getHealthStatus()
Returns:
getChargingStatus()
Returns:
getTechnology()
Returns:
getBatteryPercent()
Returns:
getTemperature()
Returns:
getVoltage()
Returns:
Current progress