forked from akofman/cordova-plugin-permissionScope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
33 lines (28 loc) · 1.29 KB
/
plugin.xml
File metadata and controls
33 lines (28 loc) · 1.29 KB
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
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-permissionScope"
version="2.1.1">
<name>PermissionScope</name>
<license>Apache 2.0</license>
<description>Cordova plugin to handle iOS permissions</description>
<keywords>cordova,phonegap,permission,permissionScope</keywords>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="PermissionScope">
<param name="ios-package" value="PermissionScopePlugin" />
</feature>
</config-file>
<js-module name="PermissionScope" src="permissionScope.js">
<clobbers target="PermissionScope" />
</js-module>
<header-file src="src/ios/PermissionScope/PermissionScope.h"/>
<header-file src="src/ios/PermissionScope-Bridging-Header.h"/>
<source-file src="src/ios/PermissionScope/PermissionScope.swift"/>
<source-file src="src/ios/PermissionScope/Constants.swift"/>
<source-file src="src/ios/PermissionScope/Extensions.swift"/>
<source-file src="src/ios/PermissionScope/Permissions.swift"/>
<source-file src="src/ios/PermissionScope/Structs.swift"/>
<source-file src="src/ios/PermissionScopePlugin.swift" />
<dependency id="cordova-plugin-add-swift-support" version="1.5.0"/>
</platform>
</plugin>