-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·26 lines (23 loc) · 969 Bytes
/
plugin.xml
File metadata and controls
executable file
·26 lines (23 loc) · 969 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
26
<?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="com.divineideas.cdvtweetsheet" version="3.2">
<name>CDVTweetSheet</name>
<description>This plugin allows you to open a native tweet in iOS phonegap app.</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/CDVTweetSheet.js" name="CDVTweetSheet">
<clobbers target="CDVTweetSheet" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CDVTweetSheet">
<param name="ios-package" value="CDVTweetSheet" />
</feature>
</config-file>
<header-file src="src/ios/CDVTweetSheet.h" />
<source-file src="src/ios/CDVTweetSheet.m" />
<framework src="Twitter.framework" />
</platform>
</plugin>