-
Notifications
You must be signed in to change notification settings - Fork 19
/
plugin.xml
27 lines (25 loc) · 1.52 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-sms-retriever-manager" version="1.0.5">
<name>Cordova SMS Retriver Plugin</name>
<description>Easily retrieve SMS messages using the Google SMS Retriever API with our cross-platform plugin designed for Ionic/Cordova. This powerful tool streamlines the process and is specifically available for Android devices.</description>
<license>MIT</license>
<keywords>ionic, ionic3, cordova, cordova-plugin, phonegap-plugin, ionic-framework, ionic-cordova, sms, sms-verificationm automatic SMS receive</keywords>
<js-module name="AndroidSmsRetriever" src="www/smsRetriever.js">
<clobbers target="cordova.plugins.smsRetriever" />
</js-module>
<engines>
<engine name="cordova" version=">=3.6.0"></engine>
</engines>
<platform name="android">
<preference name="PLAY_SERVICES_VERSION" default="15.0.1"/>
<framework src="com.google.android.gms:play-services-auth-api-phone:$PLAY_SERVICES_VERSION"/>
<source-file src="src/android/com/codingsans/ionic/smsRetriever/AndroidSmsRetriever.java"
target-dir="src/com/codingsans/ionic/smsRetriever"></source-file>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AndroidSmsRetriever">
<param name="android-package" value="com.codingsans.ionic.smsRetriever.AndroidSmsRetriever" />
</feature>
</config-file>
</platform>
</plugin>