-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
24 lines (21 loc) · 978 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-myplugin" version="0.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Myplugin</name>
<js-module name="Myplugin" src="www/Myplugin.js">
<clobbers target="Myplugin" />
</js-module>
<dependency id="cordova-sms-plugin" />
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="Myplugin">
<param name="android-package" value="cordova.plugin.myplugin.Myplugin" />
</feature>
</config-file>
<config-file parent="/manifest" target="AndroidManifest.xml">
<uses-feature android:name="android.hardware.telephony" android:required="false" />
</config-file>
<source-file src="src/android/Myplugin.java" target-dir="src/cordova-plugin-myplugin/Myplugin" />
</platform>
</plugin>