forked from EddyVerbruggen/Toast-PhoneGap-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·59 lines (59 loc) · 2.46 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
57
58
59
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-x-toast" version="2.7.0">
<name>Toast</name>
<description> This plugin allows you to show a Toast. A Toast is a little non intrusive buttonless popup which automatically disappears. </description>
<license>MIT</license>
<repo>https://github.com/bhaumikspanchal/Toast-PhoneGap-Plugin.git</repo>
<issue>https://github.com/bhaumikspanchal/Toast-PhoneGap-Plugin/issues</issue>
<engines>
<engine name="cordova" version=">=7.0.0"/>
<engine name="cordova-android" version=">=6.3.0"/>
</engines>
<js-module src="www/Toast.js" name="Toast">
<clobbers target="window.plugins.toast" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Toast">
<param name="ios-package" value="Toast"/>
</feature>
</config-file>
<header-file src="src/ios/Toast+UIView.h"/>
<source-file src="src/ios/Toast+UIView.m"/>
<header-file src="src/ios/Toast.h"/>
<source-file src="src/ios/Toast.m"/>
<framework src="QuartzCore.framework" />
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Toast">
<param name="android-package" value="nl.xservices.plugins.Toast" />
</feature>
</config-file>
<source-file src="src/android/nl/xservices/plugins/Toast.java" target-dir="src/nl/xservices/plugins"/>
</platform>
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="Toast">
<param name="wp-package" value="Toast"/>
</feature>
</config-file>
<source-file src="src/wp8/Toast.cs" />
</platform>
<platform name="blackberry10">
<source-file src="src/blackberry10/index.js" target-dir="Toast"/>
<lib-file src="src/blackberry10/native/device/libToast.so" arch="device"/>
<lib-file src="src/blackberry10/native/simulator/libToast.so" arch="simulator"/>
<config-file target="www/config.xml" parent="/widget">
<feature name="Toast" value="Toast" />
</config-file>
</platform>
<platform name="windows">
<js-module src="src/windows/toastProxy.js" name="ToastProxy">
<merges target="" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="Toast" value="Toast" />
</config-file>
</platform>
</plugin>