Thu, 04 Jun 2015 14:50:33 +0200
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.splashscreen" |
michael@0 | 23 | version="0.3.5"> |
michael@0 | 24 | <name>Splashscreen</name> |
michael@0 | 25 | <description>Cordova Splashscreen Plugin</description> |
michael@0 | 26 | <license>Apache 2.0</license> |
michael@0 | 27 | <keywords>cordova,splashscreen</keywords> |
michael@0 | 28 | <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen.git</repo> |
michael@0 | 29 | <issue>https://issues.apache.org/jira/browse/CB/component/12320653</issue> |
michael@0 | 30 | |
michael@0 | 31 | |
michael@0 | 32 | <js-module src="www/splashscreen.js" name="SplashScreen"> |
michael@0 | 33 | <clobbers target="navigator.splashscreen" /> |
michael@0 | 34 | </js-module> |
michael@0 | 35 | |
michael@0 | 36 | <!-- android --> |
michael@0 | 37 | <platform name="android"> |
michael@0 | 38 | <config-file target="res/xml/config.xml" parent="/*"> |
michael@0 | 39 | <feature name="SplashScreen"> |
michael@0 | 40 | <param name="android-package" value="org.apache.cordova.splashscreen.SplashScreen"/> |
michael@0 | 41 | </feature> |
michael@0 | 42 | </config-file> |
michael@0 | 43 | |
michael@0 | 44 | <source-file src="src/android/SplashScreen.java" target-dir="src/org/apache/cordova/splashscreen" /> |
michael@0 | 45 | </platform> |
michael@0 | 46 | |
michael@0 | 47 | <!-- amazon-fireos --> |
michael@0 | 48 | <platform name="amazon-fireos"> |
michael@0 | 49 | <config-file target="res/xml/config.xml" parent="/*"> |
michael@0 | 50 | <feature name="SplashScreen"> |
michael@0 | 51 | <param name="android-package" value="org.apache.cordova.splashscreen.SplashScreen"/> |
michael@0 | 52 | </feature> |
michael@0 | 53 | </config-file> |
michael@0 | 54 | |
michael@0 | 55 | <source-file src="src/android/SplashScreen.java" target-dir="src/org/apache/cordova/splashscreen" /> |
michael@0 | 56 | </platform> |
michael@0 | 57 | |
michael@0 | 58 | <!-- ubuntu --> |
michael@0 | 59 | <platform name="ubuntu"> |
michael@0 | 60 | <header-file src="src/ubuntu/splashscreen.h" /> |
michael@0 | 61 | <source-file src="src/ubuntu/splashscreen.cpp" /> |
michael@0 | 62 | </platform> |
michael@0 | 63 | |
michael@0 | 64 | <!-- ios --> |
michael@0 | 65 | <platform name="ios"> |
michael@0 | 66 | <config-file target="config.xml" parent="/*"> |
michael@0 | 67 | <feature name="SplashScreen"> |
michael@0 | 68 | <param name="ios-package" value="CDVSplashScreen"/> |
michael@0 | 69 | <param name="onload" value="true"/> |
michael@0 | 70 | </feature> |
michael@0 | 71 | </config-file> |
michael@0 | 72 | |
michael@0 | 73 | <header-file src="src/ios/CDVSplashScreen.h" /> |
michael@0 | 74 | <source-file src="src/ios/CDVSplashScreen.m" /> |
michael@0 | 75 | |
michael@0 | 76 | <framework src="CoreGraphics.framework" /> |
michael@0 | 77 | </platform> |
michael@0 | 78 | |
michael@0 | 79 | <!-- blackberry10 --> |
michael@0 | 80 | <platform name="blackberry10"> |
michael@0 | 81 | <source-file src="src/blackberry10/index.js" target-dir="SplashScreen" /> |
michael@0 | 82 | <config-file target="www/config.xml" parent="/widget"> |
michael@0 | 83 | <feature name="SplashScreen" value="SplashScreen"/> |
michael@0 | 84 | </config-file> |
michael@0 | 85 | </platform> |
michael@0 | 86 | |
michael@0 | 87 | <!-- wp7 --> |
michael@0 | 88 | <platform name="wp7"> |
michael@0 | 89 | <config-file target="config.xml" parent="/*"> |
michael@0 | 90 | <feature name="SplashScreen"> |
michael@0 | 91 | <param name="wp-package" value="SplashScreen"/> |
michael@0 | 92 | <param name="onload" value="true"/> |
michael@0 | 93 | </feature> |
michael@0 | 94 | </config-file> |
michael@0 | 95 | |
michael@0 | 96 | <source-file src="src/wp/SplashScreen.cs" /> |
michael@0 | 97 | |
michael@0 | 98 | </platform> |
michael@0 | 99 | |
michael@0 | 100 | <!-- wp8 --> |
michael@0 | 101 | <platform name="wp8"> |
michael@0 | 102 | <config-file target="config.xml" parent="/*"> |
michael@0 | 103 | <feature name="SplashScreen"> |
michael@0 | 104 | <param name="wp-package" value="SplashScreen"/> |
michael@0 | 105 | <param name="onload" value="true"/> |
michael@0 | 106 | </feature> |
michael@0 | 107 | </config-file> |
michael@0 | 108 | |
michael@0 | 109 | <source-file src="src/wp/SplashScreen.cs" /> |
michael@0 | 110 | |
michael@0 | 111 | </platform> |
michael@0 | 112 | |
michael@0 | 113 | <!-- windows8 --> |
michael@0 | 114 | <platform name="windows8"> |
michael@0 | 115 | <js-module src="www/windows8/SplashScreenProxy.js" name="SplashScreenProxy"> |
michael@0 | 116 | <merges target="" /> |
michael@0 | 117 | </js-module> |
michael@0 | 118 | </platform> |
michael@0 | 119 | |
michael@0 | 120 | <!-- tizen --> |
michael@0 | 121 | <platform name="tizen"> |
michael@0 | 122 | <js-module src="src/tizen/SplashScreenProxy.js" name="SplashScreenProxy"> |
michael@0 | 123 | <runs /> |
michael@0 | 124 | </js-module> |
michael@0 | 125 | </platform> |
michael@0 | 126 | </plugin> |