1.0.3 • Published 2 years ago

react-native-flag-secure-android v1.0.3

Weekly downloads
983
License
ISC
Repository
github
Last release
2 years ago

react-native-flag-secure-android

A simple module used to add FLAG_SECURE to the main activity. FLAG_SECURE prevents the users and the app to take screenshots of the app content.

Manual Install

  1. Open up `android/app/src/main/java/.../MainApplication.java (React Native 0.29+)
  • Add import com.staltz.flagsecure.FlagSecurePackage; to the imports at the top of the file
  • Add new FlagSecurePackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:

    include ':react-native-flag-secure-android'
    project(':react-native-flag-secure-android').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-flag-secure-android/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:

    compile project(':react-native-flag-secure-android')

Usage

import FlagSecure from 'react-native-flag-secure-android';

function flagSecure(enable) {
  if (enable) {
    FlagSecure.activate();
  } else {
    FlagSecure.deactivate();
  }
}

Notes

Please note that this module is an adpation of the react-native-keep-awake module.

1.0.3

2 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago