Touchgui/plugins/org.apache.cordova.dialogs/plugin.xml

Thu, 04 Jun 2015 14:50:33 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Jun 2015 14:50:33 +0200
changeset 0
e8ccd40d0ef6
permissions
-rw-r--r--

Genesis of lecture sources for Droidcon Berlin 2015 in Postbahnhof.

michael@0 1 <?xml version="1.0" encoding="UTF-8"?>
michael@0 2 <!--
michael@0 3 Licensed to the Apache Software Foundation (ASF) under one
michael@0 4 or more contributor license agreements. See the NOTICE file
michael@0 5 distributed with this work for additional information
michael@0 6 regarding copyright ownership. The ASF licenses this file
michael@0 7 to you under the Apache License, Version 2.0 (the
michael@0 8 "License"); you may not use this file except in compliance
michael@0 9 with the License. You may obtain a copy of the License at
michael@0 10
michael@0 11 http://www.apache.org/licenses/LICENSE-2.0
michael@0 12
michael@0 13 Unless required by applicable law or agreed to in writing,
michael@0 14 software distributed under the License is distributed on an
michael@0 15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
michael@0 16 KIND, either express or implied. See the License for the
michael@0 17 specific language governing permissions and limitations
michael@0 18 under the License.
michael@0 19 -->
michael@0 20
michael@0 21 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
michael@0 22 id="org.apache.cordova.dialogs"
michael@0 23 version="0.2.11">
michael@0 24
michael@0 25 <name>Notification</name>
michael@0 26 <description>Cordova Notification Plugin</description>
michael@0 27 <license>Apache 2.0</license>
michael@0 28 <keywords>cordova,notification</keywords>
michael@0 29 <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git</repo>
michael@0 30 <issue>https://issues.apache.org/jira/browse/CB/component/12320642</issue>
michael@0 31
michael@0 32 <js-module src="www/notification.js" name="notification">
michael@0 33 <merges target="navigator.notification" />
michael@0 34 </js-module>
michael@0 35
michael@0 36 <!-- firefoxos -->
michael@0 37 <platform name="firefoxos">
michael@0 38 <config-file target="config.xml" parent="/*">
michael@0 39 <feature name="Notification">
michael@0 40 <param name="firefoxos-package" value="Notification" />
michael@0 41 </feature>
michael@0 42 </config-file>
michael@0 43
michael@0 44 <asset src="www/firefoxos/notification.css" target="css/notification.css" />
michael@0 45 <asset src="www/firefoxos/danger-press.png" target="img/danger-press.png" />
michael@0 46 <asset src="www/firefoxos/danger.png" target="img/danger.png" />
michael@0 47 <asset src="www/firefoxos/default.png" target="img/default.png" />
michael@0 48 <asset src="www/firefoxos/gradient.png" target="img/gradient.png" />
michael@0 49 <asset src="www/firefoxos/pattern.png" target="img/pattern.png" />
michael@0 50 <asset src="www/firefoxos/recommend.png" target="img/recommend.png" />
michael@0 51 <js-module src="src/firefoxos/notification.js" name="dialogs-impl">
michael@0 52 <runs />
michael@0 53 </js-module>
michael@0 54 </platform>
michael@0 55
michael@0 56 <!-- android -->
michael@0 57 <platform name="android">
michael@0 58 <config-file target="res/xml/config.xml" parent="/*">
michael@0 59 <feature name="Notification">
michael@0 60 <param name="android-package" value="org.apache.cordova.dialogs.Notification"/>
michael@0 61 </feature>
michael@0 62 </config-file>
michael@0 63
michael@0 64 <source-file src="src/android/Notification.java" target-dir="src/org/apache/cordova/dialogs" />
michael@0 65
michael@0 66 <!-- android specific notification apis -->
michael@0 67 <js-module src="www/android/notification.js" name="notification_android">
michael@0 68 <merges target="navigator.notification" />
michael@0 69 </js-module>
michael@0 70
michael@0 71 </platform>
michael@0 72
michael@0 73 <!-- amazon-fireos -->
michael@0 74 <platform name="amazon-fireos">
michael@0 75 <config-file target="res/xml/config.xml" parent="/*">
michael@0 76 <feature name="Notification">
michael@0 77 <param name="android-package" value="org.apache.cordova.dialogs.Notification"/>
michael@0 78 </feature>
michael@0 79 </config-file>
michael@0 80
michael@0 81 <source-file src="src/android/Notification.java" target-dir="src/org/apache/cordova/dialogs" />
michael@0 82
michael@0 83 <!-- android specific notification apis -->
michael@0 84 <js-module src="www/android/notification.js" name="notification_android">
michael@0 85 <merges target="navigator.notification" />
michael@0 86 </js-module>
michael@0 87
michael@0 88 </platform>
michael@0 89
michael@0 90 <!-- ubuntu -->
michael@0 91 <platform name="ubuntu">
michael@0 92 <header-file src="src/ubuntu/notification.h" />
michael@0 93 <source-file src="src/ubuntu/notification.cpp" />
michael@0 94 <resource-file src="src/ubuntu/notification.qml" />
michael@0 95 </platform>
michael@0 96
michael@0 97 <!-- ios -->
michael@0 98 <platform name="ios">
michael@0 99 <config-file target="config.xml" parent="/*">
michael@0 100 <feature name="Notification">
michael@0 101 <param name="ios-package" value="CDVNotification"/>
michael@0 102 </feature>
michael@0 103 </config-file>
michael@0 104 <header-file src="src/ios/CDVNotification.h" />
michael@0 105 <source-file src="src/ios/CDVNotification.m" />
michael@0 106 <resource-file src="src/ios/CDVNotification.bundle" />
michael@0 107 <framework src="AudioToolbox.framework" weak="true" />
michael@0 108 </platform>
michael@0 109
michael@0 110 <!-- blackberry10 -->
michael@0 111 <platform name="blackberry10">
michael@0 112 <source-file src="src/blackberry10/index.js" target-dir="Notification" />
michael@0 113 <config-file target="www/config.xml" parent="/widget">
michael@0 114 <feature name="Notification" value="Notification"/>
michael@0 115 </config-file>
michael@0 116 <js-module src="www/blackberry10/beep.js" name="beep">
michael@0 117 <clobbers target="window.navigator.notification.beep" />
michael@0 118 </js-module>
michael@0 119 <source-file src="www/blackberry10/notification-beep.wav" />
michael@0 120 </platform>
michael@0 121
michael@0 122 <!-- wp7 -->
michael@0 123 <platform name="wp7">
michael@0 124 <config-file target="config.xml" parent="/*">
michael@0 125 <feature name="Notification">
michael@0 126 <param name="wp-package" value="Notification"/>
michael@0 127 </feature>
michael@0 128 </config-file>
michael@0 129
michael@0 130 <source-file src="src/wp/Notification.cs" />
michael@0 131 <source-file src="src/wp/NotificationBox.xaml.cs" />
michael@0 132 <source-file src="src/wp/NotificationBox.xaml" />
michael@0 133 <source-file src="src/wp/notification-beep.wav" />
michael@0 134 </platform>
michael@0 135
michael@0 136 <!-- wp8 -->
michael@0 137 <platform name="wp8">
michael@0 138 <config-file target="config.xml" parent="/*">
michael@0 139 <feature name="Notification">
michael@0 140 <param name="wp-package" value="Notification"/>
michael@0 141 </feature>
michael@0 142 </config-file>
michael@0 143
michael@0 144 <source-file src="src/wp/Notification.cs" />
michael@0 145 <source-file src="src/wp/NotificationBox.xaml.cs" />
michael@0 146 <source-file src="src/wp/NotificationBox.xaml" />
michael@0 147 <source-file src="src/wp/notification-beep.wav" />
michael@0 148 </platform>
michael@0 149
michael@0 150 <!-- windows8 -->
michael@0 151 <platform name="windows8">
michael@0 152 <js-module src="src/windows8/NotificationProxy.js" name="NotificationProxy">
michael@0 153 <merges target="" />
michael@0 154 </js-module>
michael@0 155 </platform>
michael@0 156
michael@0 157 </plugin>

mercurial