You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
|
6 years ago
|
<?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="cordova-plugin-sms-receive"
|
||
|
|
version="1.0.2">
|
||
|
|
|
||
|
|
<name>SMS Receive</name>
|
||
|
|
<description>Cordova plugin to receive SMS in Android</description>
|
||
|
|
<author>Andres Zsogon</author>
|
||
|
|
<license>MIT</license>
|
||
|
|
<keywords>sms,receive</keywords>
|
||
|
|
|
||
|
|
<engines>
|
||
|
|
<engine name="cordova" version=">=6.0.0" />
|
||
|
|
</engines>
|
||
|
|
|
||
|
|
<js-module src="www/SMSReceive.js" name="SMSReceive">
|
||
|
|
<clobbers target="window.SMSReceive" />
|
||
|
|
</js-module>
|
||
|
|
|
||
|
|
<!-- android -->
|
||
|
|
<platform name="android">
|
||
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
||
|
|
<feature name="SMSReceive">
|
||
|
|
<param name="android-package" value="com.andreszs.cordova.sms.SMSReceive"/>
|
||
|
|
</feature>
|
||
|
|
</config-file>
|
||
|
|
|
||
|
|
<config-file target="AndroidManifest.xml" parent="/*">
|
||
|
|
<uses-feature android:name="android.hardware.telephony" android:required="false" />
|
||
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
||
|
|
</config-file>
|
||
|
|
|
||
|
|
<source-file src="src/android/SMSReceive.java" target-dir="src/com/andreszs/cordova/sms" />
|
||
|
|
</platform>
|
||
|
|
|
||
|
|
</plugin>
|