-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
23 lines (23 loc) · 1.35 KB
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-crowdconnected-colocator-ios-integration" version="1.0.0">
<name>Crowd Connected Colocator iOS integration</name>
<description>An iOS Cordova plugin that handles all the specific settings of iOS for the Crowd Connected Colocator.</description>
<license>MIT</license>
<keywords>cordova,crowdconnected,colocator,ios</keywords>
<js-module src="www/CrowdConnectedColocatoriOSIntegration.js" name="CrowdConnectedColocatoriOSIntegration">
<clobbers target="window.CrowdConnectedColocatoriOSIntegration" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CrowdConnectedColocatoriOSIntegration">
<param name="ios-package" value="CrowdConnectedColocatoriOSIntegration" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/CDVPlugin+CrowdConnectedColocatoriOSIntegration.h" />
<source-file src="src/ios/CDVPlugin+CrowdConnectedColocatoriOSIntegration.m" />
<header-file src="src/ios/AppDelegate+CrowdConnectedColocatoriOSIntegration.h" />
<source-file src="src/ios/AppDelegate+CrowdConnectedColocatoriOSIntegration.m" />
</platform>
</plugin>