React-native 캡처 방지 방법
앱 사용자들에게 캡처를 못하도록 못하는 방법 입니다.
일부 앱을 사용하다 보면 캡처 자체가 불가능한 경우가 있는데 그와 비슷하게 캡처를 못하게 하는 방법입니다.
react-native-screen-capture-secure 라이브러리 설치
react-native-screen-capture-secure 라이브러리를 설치 합니다.
아래의 커맨드를 입력 후 설치 진행하면 됩니다.
npm install react-native-screen-capture-secure --save
적용방법
app.js에 아래와 같이 코드를 작성합니다.
import ScreenCaptureSecure from 'react-native-screen-capture-secure';
ScreenCaptureSecure.enableSecure(); // 캡처 방지 적용 시 작성
ScreenCaptureSecure.disableSecure(); // 캡처 방지 해제 시 작성
728x90
'APP > React-Native' 카테고리의 다른 글
[React-Native] React-native 앱 아이콘 만들기 (0) | 2022.01.25 |
---|---|
[React-Native] Plugin with id 'maven' not found. 해결 방법 (0) | 2022.01.24 |
[React-Native] ERESOLVE unable to resolve dependency tree 에러 발생 시 해결 방법 (0) | 2022.01.23 |
[React-Native] React-native Splash 화면 적용하기 (0) | 2022.01.23 |
[React-Native] Android aab(apk)파일 생성하기 (0) | 2022.01.21 |
댓글