0.1.10 • Published 3 years ago

react-native-full-battery-status v0.1.10

Weekly downloads
19
License
-
Repository
github
Last release
3 years ago

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

  1. 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
  1. 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')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-full-battery-status')

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-full-battery-status and add RNFullBatteryStatus.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNFullBatteryStatus.a to your project's Build PhasesLink Binary With Libraries
  4. 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

  • Android interfaces
  • iOS interfaces;
  • Tests