Socket
Book a DemoInstallSign in
Socket

react-native-full-battery-status

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-full-battery-status

*NOTE: For now, it only works on Android*

Source
npmnpm
Version
0.1.6
Version published
Weekly downloads
3
-57.14%
Maintainers
1
Weekly downloads
 
Created
Source

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 LibrariesAdd Files to [your project's name]
  • Go to node_modulesreact-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 PhasesLink 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

  • Android interfaces
  • iOS interfaces;
  • Tests

Keywords

react-native

FAQs

Package last updated on 17 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts