Skip to content

Latest commit

 

History

History
executable file
·
76 lines (63 loc) · 2.87 KB

File metadata and controls

executable file
·
76 lines (63 loc) · 2.87 KB

Clipboard sample application

Clipboard sample application demonstrates usage of Clipboard API in terms of Data Leakage Prevention. It is possible to change DLP policy on UEM and see how it affects the clipboard within the application. If DLP is on, it will not be possible to paste data from clipboard to "non-Dynamics" application.

How to prepare the app

Open the sample app directory in Terminal window: $ cd <path>/SampleApplications/ClipboardTestApp

Install dependencies: $ yarn

NOTE: ClipboardTestApp sample is based on 0.63.2 version of React Native. There is a possibility to upgrade to 0.63.x by running following command: $ react-native upgrade 0.63.x for example: $ react-native upgrade 0.63.3

Generate ios and android directories: $ react-native eject

Dynamics modules

Prerequisites

There are some dependencies that need to installed before using BlackBerry-Dynamics-for-React-Native-Base module. More information can be found here.

How to integrate Dynamics into application

$ yarn add <path>/modules/BlackBerry-Dynamics-for-React-Native-Base

Integrates Dynamics based on your current identifiers - iOS Bundle ID and Android Package Name.

$ yarn set-bundle-id (Optional step, but required for sample applications)

Allows to update an identifier (required) and name (optional) for your application. This identifier is your iOS Bundle ID or Android Package Name. It will also be used as the Entitlement ID for entitling and activating your application with the BlackBerry UEM management console.

How to secure Clipboard API

$ yarn add <path>/modules/BlackBerry-Dynamics-for-React-Native-Clipboard
iOS

$ cd ios
$ pod install
$ cd ..

How to run application

iOS

$ react-native run-ios

Android

$ react-native run-android

Examples of usage

0.63.2

$ cd <path>/SampleApplications/ClipboardTestApp
$ yarn
$ react-native eject
$ yarn add <path>/modules/BlackBerry-Dynamics-for-React-Native-Base
$ yarn set-bundle-id
$ yarn add <path>/modules/BlackBerry-Dynamics-for-React-Native-Clipboard
For iOS:
$ cd ios
$ pod install
$ cd ..
$ react-native run-ios
For Android:
$ react-native run-android

0.63.x

$ cd <path>/SampleApplications/ClipboardTestApp
$ yarn
$ cd .. ; git init ; cd ClipboardTestApp
$ react-native upgrade 0.63.3
$ react-native eject
$ yarn add <path>/modules/BlackBerry-Dynamics-for-React-Native-Base
$ yarn set-bundle-id
$ yarn add <path>/modules/BlackBerry-Dynamics-for-React-Native-Clipboard
For iOS:
$ cd ios
$ pod install
$ cd ..
$ react-native run-ios
For Android:
$ react-native run-android