react-native-idle-timer
Advanced tools
Comparing version
@@ -7,3 +7,3 @@ { | ||
}, | ||
"version": "2.1.3", | ||
"version": "2.1.4", | ||
"author": "Marc Shilling (marcshilling)", | ||
@@ -10,0 +10,0 @@ "description": "A cross-platform bridge that allows you to enable and disable the screen idle timer in your React Native app", |
# react-native-idle-timer | ||
A cross-platform bridge that allows you to enable and disable the screen idle timer in your React Native app | ||
## Install | ||
`npm install react-native-idle-timer@latest --save` | ||
## Configure | ||
#### With rnpm | ||
`rnpm link react-native-idle-timer` | ||
## Link | ||
#### Automatically | ||
`react-native link` | ||
#### Manually | ||
##### iOS | ||
@@ -17,51 +22,55 @@ 1. In the XCode's "Project navigator", right click on your project's Libraries folder ➜ `Add Files to <...>` | ||
##### Android | ||
1. in `android/settings.gradle` | ||
``` | ||
... | ||
include ':react-native-idle-timer' | ||
project(':react-native-idle-timer').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-idle-timer/android') | ||
``` | ||
```gradle | ||
... | ||
include ':react-native-idle-timer' | ||
project(':react-native-idle-timer').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-idle-timer/android') | ||
``` | ||
2. in `android/app/build.gradle` add: | ||
``` | ||
dependencies { | ||
... | ||
compile project(':react-native-idle-timer') | ||
} | ||
``` | ||
```gradle | ||
dependencies { | ||
... | ||
compile project(':react-native-idle-timer') | ||
} | ||
``` | ||
3. and finally, in `android/src/main/java/com/{YOUR_APP_NAME}/MainActivity.java` add: | ||
```java | ||
//... | ||
import com.marcshilling.idletimer.IdleTimerPackage; // <--- This! | ||
//... | ||
@Override | ||
protected List<ReactPackage> getPackages() { | ||
return Arrays.<ReactPackage>asList( | ||
new MainReactPackage(), | ||
new IdleTimerPackage() // <---- and This! | ||
); | ||
```java | ||
//... | ||
import com.marcshilling.idletimer.IdleTimerPackage; // <--- This! | ||
//... | ||
@Override | ||
protected List<ReactPackage> getPackages() { | ||
return Arrays.<ReactPackage>asList( | ||
new MainReactPackage(), | ||
new IdleTimerPackage() // <---- and This! | ||
); | ||
} | ||
``` | ||
``` | ||
## Usage | ||
1. In your React Native javascript code, bring in the native module: | ||
```javascript | ||
```javascript | ||
import IdleTimerManager from 'react-native-idle-timer'; | ||
``` | ||
``` | ||
2. To disable the idle timer on a specific view component: | ||
```javascript | ||
componentWillMount() { | ||
IdleTimerManager.setIdleTimerDisabled(true); | ||
} | ||
componentWillUnmount() { | ||
IdleTimerManager.setIdleTimerDisabled(false); | ||
} | ||
``` | ||
```javascript | ||
componentWillMount() { | ||
IdleTimerManager.setIdleTimerDisabled(true); | ||
} | ||
componentWillUnmount() { | ||
IdleTimerManager.setIdleTimerDisabled(false); | ||
} | ||
``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
61
1.67%76
13.43%16076
-2.45%12
-7.69%