https://github.com/textileio/react-native-screen-control
https://github.com/textileio/react-native-screen-control
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/textileio/react-native-screen-control
- Owner: textileio
- Created: 2019-01-18T20:23:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-21T17:03:28.000Z (over 7 years ago)
- Last Synced: 2024-03-03T04:04:54.521Z (over 2 years ago)
- Language: Objective-C
- Size: 288 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-native-screen-control
## Getting started
`$ npm install @textile/react-native-screen-control --save`
### Mostly automatic installation
`$ react-native link @textile/react-native-screen-control`
### Manual installation
#### iOS
1. In XCode, in the project navigator, right click `Libraries` ➜ `Add Files to [your project's name]`
2. Go to `node_modules` ➜ `@textile/react-native-screen-control` and add `RNScreenControl.xcodeproj`
3. In XCode, in the project navigator, select your project. Add `libRNScreenControl.a` to your project's `Build Phases` ➜ `Link Binary With Libraries`
4. Run your project (`Cmd+R`)<
#### Android
1. Open up `android/app/src/main/java/[...]/MainActivity.java`
- Add `import io.textile.screencontrol.RNScreenControlPackage;` to the imports at the top of the file
- Add `new RNScreenControlPackage()` to the list returned by the `getPackages()` method
2. Append the following lines to `android/settings.gradle`:
```
include ':react-native-screen-control'
project(':react-native-screen-control').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-screen-control/android')
```
3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
```
compile project(':react-native-screen-control')
```
## Usage
```javascript
import { keepScreenOn, letScreenSleep } from '@textile/react-native-screen-control'
```
## Run Example
```javascript
cd example/
yarn
react-native start
react-native run-ios
```