react-native-elapsed-time-v1
v1.0.0
Published
## Getting started
Downloads
4
Maintainers
Readme
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
- 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 thegetPackages()
method
- 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')
- 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();