This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
forked from StackTipsLab/phonegap-sms-plugin
-
Notifications
You must be signed in to change notification settings - Fork 45
/
plugin.xml
56 lines (48 loc) · 1.87 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="org.apache.cordova.plugin.sms"
version="0.1.0">
<name>Sms</name>
<description>Cordova SMS Send Plugin</description>
<license>MIT</license>
<keywords>cordova,phonegap,sms</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/sms.js" name="Sms">
<clobbers target="window.sms" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Sms">
<param name="android-package" value="org.apache.cordova.plugin.sms.Sms"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-feature android:name="android.hardware.telephony" android:required="false" />
</config-file>
<source-file src="src/android/Sms.java" target-dir="src/org/apache/cordova/plugin/sms" />
</platform>
<platform name="wp8">
<source-file src="src/wp8/Sms.cs" />
<config-file target="config.xml" parent="/*">
<feature name="Sms">
<param name="wp-package" value="Sms" />
</feature>
</config-file>
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Sms">
<param name="ios-package" value="Sms" />
</feature>
</config-file>
<header-file src="src/ios/Sms.h" />
<source-file src="src/ios/Sms.m" />
<framework src="MessageUI.framework" weak="true" />
</platform>
</plugin>