1.0.12 • Published 7 years ago
@textile/react-native-screen-control v1.0.12
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
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜@textile/react-native-screen-controland addRNScreenControl.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNScreenControl.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- 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 thegetPackages()method
- 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') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-screen-control')
Usage
import { keepScreenOn, letScreenSleep } from '@textile/react-native-screen-control'Run Example
cd example/
yarn
react-native start
react-native run-ios