react-native-unlock-device

1.3.0 • Public • Published

react-native-unlock-device

Getting started

$ npm install react-native-react-native-unlock-device --save

Mostly automatic installation

$ react-native link react-native-react-native-unlock-device

Manual installation

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNUnlockDevicePackage; to the imports at the top of the file
  • Add new RNUnlockDevicePackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
include ':react-native-react-native-unlock-device'
project(':react-native-react-native-unlock-device').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-react-native-unlock-device/android')
  1. Insert the following lines inside the dependencies block in android/app/build.gradle:
    compile project(':react-native-react-native-unlock-device')

Add this this AndroidManifest.xml

<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>

Usage

import RNUnlockDevice from 'react-native-unlock-device';
 
// TODO: What to do with the module?
RNUnlockDevice.unlock()
  .then(() => console.log('Success'))
  .catch(error => console.log('Error', error));

/react-native-unlock-device/

    Package Sidebar

    Install

    npm i react-native-unlock-device

    Weekly Downloads

    7

    Version

    1.3.0

    License

    none

    Unpacked Size

    5.82 kB

    Total Files

    8

    Last publish

    Collaborators

    • sieuhuflit