-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
24 lines (19 loc) · 968 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-Screenshield" version="0.3.2">
<name>Screenshield</name>
<description>Secures your app from displaying a screenshot in task switchers under Android and iOS. Keeps sensitive information private.</description>
<license>MIT</license>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="Screenshield">
<param name="ios-package" value="Screenshield"/>
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/ScreenShieldKit.h"/>
<header-file src="src/ios/SSKProtectedImageView.h"/>
<header-file src="src/ios/SSKProtectedLabel.h"/>
<header-file src="src/ios/SSKProtectedViewStatus.h"/>
<source-file src="src/ios/Tmodule.modulemap"/>
</platform>
</plugin>