forked from emilycestmoi/phonegap-ios-social-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
35 lines (23 loc) · 892 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
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.simbco.cordova.social"
version="0.2.0">
<name>iOSSocial</name>
<description>Cordova iOS Social Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,social,share</keywords>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Social">
<param name="ios-package" value="Social" />
</feature>
</config-file>
<header-file src="src/ios/Social.h" />
<source-file src="src/ios/Social.m" />
<framework src="Social.framework" />
<js-module src="www/social.js" name="Social">
<clobbers target="window.plugins.social" />
</js-module>
</platform>
</plugin>