Toast-PhoneGap-Plugin/plugin.xml

91 lines
2.5 KiB
XML
Raw Permalink Normal View History

2014-01-25 17:46:46 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2016-02-18 02:50:19 +08:00
id="cordova-plugin-x-toast"
2021-11-10 22:59:03 +08:00
version="2.7.3">
2014-01-25 17:46:46 +08:00
<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>
<author>Eddy Verbruggen</author>
2014-01-25 17:46:46 +08:00
<license>MIT</license>
<keywords>Toast, Notification, Message, Alert</keywords>
<repo>https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin.git</repo>
<issue>https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin/issues</issue>
2014-01-25 17:46:46 +08:00
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module src="www/Toast.js" name="Toast">
<clobbers target="window.plugins.toast" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Toast">
<param name="ios-package" value="Toast"/>
</feature>
</config-file>
2014-01-25 18:45:10 +08:00
<header-file src="src/ios/Toast+UIView.h"/>
<source-file src="src/ios/Toast+UIView.m"/>
2014-01-25 17:46:46 +08:00
<header-file src="src/ios/Toast.h"/>
<source-file src="src/ios/Toast.m"/>
2014-01-25 18:45:10 +08:00
<framework src="QuartzCore.framework" />
2014-01-25 17:46:46 +08:00
</platform>
<!-- android -->
<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>
2014-04-18 02:41:02 +08:00
<!-- wp8 -->
2014-04-12 16:02:41 +08:00
<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" />
2014-04-18 02:41:02 +08:00
</platform>
2014-04-12 16:02:41 +08:00
2017-02-15 21:02:27 +08:00
<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>
2018-03-16 04:25:59 +08:00
2017-02-15 21:02:27 +08:00
<!-- windows -->
<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>
2018-03-16 04:25:59 +08:00
2014-01-25 17:46:46 +08:00
</plugin>