react-native-android-wake-screen

1.0.6 • Public • Published

react-native-android-wake-screen

Getting started

$ npm install react-native-android-wake-screen --save

Mostly automatic installation

$ react-native link react-native-android-wake-screen

Usage

This module helps turn the screen display on from within a headless function.

Add the following inside the project manifest (android/app/src/main/AndroidManifest.xml):

<uses-permission android:name="android.permission.WAKE_LOCK" />   //Add this line
<application
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:allowBackup="false"
      android:turnScreenOn="true"                          // Add this line
      android:theme="@style/AppTheme">
import AndroidWakeScreen from 'react-native-android-wake-screen';

//inside your headless function
const MyHeadlessFunction = async () => {
  AndroidWakeScreen.wakeScreen();
};

Package Sidebar

Install

npm i react-native-android-wake-screen

Weekly Downloads

53

Version

1.0.6

License

MIT

Unpacked Size

70.8 kB

Total Files

13

Last publish

Collaborators

  • witpranav