Skip to content

pankajkgarg/react-native-elapsed-time

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-elapsed-time

Getting started

$ npm install react-native-elapsed-time --save

Mostly automatic installation

$ react-native link react-native-elapsed-time

Manual installation

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.pkgarg.elapsedtime.RNElapsedTimePackage; to the imports at the top of the file
  • Add new RNElapsedTimePackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-elapsed-time'
    project(':react-native-elapsed-time').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-elapsed-time/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-elapsed-time')
    

Usage

import RNElapsedTime from 'react-native-elapsed-time';

// Returns time in millisecond
...
const elapsedTime = await RNElapsedTime.getRelativeTime();

About

Get elapsed time since boot on android on react native

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published