-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
25 lines (21 loc) · 1000 Bytes
/
Copy pathplugin.xml
File metadata and controls
25 lines (21 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="cordova-plugin-gesture-lock" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>cordovaGestureLock</name>
<description>Cordova Gesture Lock Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,gesture</keywords>
<asset src="src/gesture" target="gestureLock"/>
<js-module name="cordovaGestureLock" src="www/cordovaGestureLock.js">
<clobbers target="cordova.plugins.cordovaGestureLock" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="GestureLock">
<param name="ios-package" value="GestureLock"/>
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/GestureLock.h" />
<source-file src="src/ios/GestureLock.m" />
</platform>
</plugin>