1.0.4 • Published 1 year ago

react-native-flag-secure v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year 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.idmuvunyi.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:

    implementation 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.4

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago