New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-idle-timer

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-idle-timer - npm Package Compare versions

Comparing version

to
2.1.4

2

package.json

@@ -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