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

changeset 0
e8ccd40d0ef6
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Touchgui/plugins/org.apache.cordova.splashscreen/plugin.xml	Thu Jun 04 14:50:33 2015 +0200
     1.3 @@ -0,0 +1,126 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<!--
     1.6 +  Licensed to the Apache Software Foundation (ASF) under one
     1.7 +  or more contributor license agreements.  See the NOTICE file
     1.8 +  distributed with this work for additional information
     1.9 +  regarding copyright ownership.  The ASF licenses this file
    1.10 +  to you under the Apache License, Version 2.0 (the
    1.11 +  "License"); you may not use this file except in compliance
    1.12 +  with the License.  You may obtain a copy of the License at
    1.13 +
    1.14 +    http://www.apache.org/licenses/LICENSE-2.0
    1.15 +
    1.16 +  Unless required by applicable law or agreed to in writing,
    1.17 +  software distributed under the License is distributed on an
    1.18 +  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    1.19 +  KIND, either express or implied.  See the License for the
    1.20 +  specific language governing permissions and limitations
    1.21 +  under the License.
    1.22 +-->
    1.23 +
    1.24 +<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
    1.25 +           id="org.apache.cordova.splashscreen"
    1.26 +      version="0.3.5">
    1.27 +    <name>Splashscreen</name>
    1.28 +    <description>Cordova Splashscreen Plugin</description>
    1.29 +    <license>Apache 2.0</license>
    1.30 +    <keywords>cordova,splashscreen</keywords>
    1.31 +    <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen.git</repo>
    1.32 +    <issue>https://issues.apache.org/jira/browse/CB/component/12320653</issue>
    1.33 +
    1.34 +
    1.35 +    <js-module src="www/splashscreen.js" name="SplashScreen">
    1.36 +        <clobbers target="navigator.splashscreen" />
    1.37 +    </js-module>
    1.38 +
    1.39 +    <!-- android -->
    1.40 +    <platform name="android">
    1.41 +        <config-file target="res/xml/config.xml" parent="/*">
    1.42 +            <feature name="SplashScreen">
    1.43 +            <param name="android-package" value="org.apache.cordova.splashscreen.SplashScreen"/>
    1.44 +            </feature>
    1.45 +        </config-file>
    1.46 +
    1.47 +        <source-file src="src/android/SplashScreen.java" target-dir="src/org/apache/cordova/splashscreen" />
    1.48 +    </platform>
    1.49 +
    1.50 +    <!-- amazon-fireos -->
    1.51 +    <platform name="amazon-fireos">
    1.52 +        <config-file target="res/xml/config.xml" parent="/*">
    1.53 +            <feature name="SplashScreen">
    1.54 +            <param name="android-package" value="org.apache.cordova.splashscreen.SplashScreen"/>
    1.55 +            </feature>
    1.56 +        </config-file>
    1.57 +
    1.58 +        <source-file src="src/android/SplashScreen.java" target-dir="src/org/apache/cordova/splashscreen" />
    1.59 +    </platform>
    1.60 +    
    1.61 +    <!-- ubuntu -->
    1.62 +    <platform name="ubuntu">
    1.63 +        <header-file src="src/ubuntu/splashscreen.h" />
    1.64 +        <source-file src="src/ubuntu/splashscreen.cpp" />
    1.65 +    </platform>
    1.66 +
    1.67 +    <!-- ios -->
    1.68 +    <platform name="ios">
    1.69 +        <config-file target="config.xml" parent="/*">
    1.70 +		    <feature name="SplashScreen">
    1.71 +			    <param name="ios-package" value="CDVSplashScreen"/>
    1.72 +			    <param name="onload" value="true"/>
    1.73 +		    </feature>
    1.74 +        </config-file>
    1.75 +
    1.76 +	    <header-file src="src/ios/CDVSplashScreen.h" />
    1.77 +	    <source-file src="src/ios/CDVSplashScreen.m" />
    1.78 +
    1.79 +	    <framework src="CoreGraphics.framework" />
    1.80 +    </platform>
    1.81 +
    1.82 +    <!-- blackberry10 -->
    1.83 +    <platform name="blackberry10">
    1.84 +        <source-file src="src/blackberry10/index.js" target-dir="SplashScreen" />
    1.85 +        <config-file target="www/config.xml" parent="/widget">
    1.86 +            <feature name="SplashScreen" value="SplashScreen"/>
    1.87 +        </config-file>
    1.88 +    </platform>
    1.89 +
    1.90 +    <!-- wp7 -->
    1.91 +    <platform name="wp7">
    1.92 +        <config-file target="config.xml" parent="/*">
    1.93 +            <feature name="SplashScreen">
    1.94 +                <param name="wp-package" value="SplashScreen"/>
    1.95 +                <param name="onload" value="true"/>
    1.96 +            </feature>
    1.97 +        </config-file>
    1.98 +
    1.99 +        <source-file src="src/wp/SplashScreen.cs" />
   1.100 +
   1.101 +    </platform>
   1.102 +
   1.103 +    <!-- wp8 -->
   1.104 +    <platform name="wp8">
   1.105 +        <config-file target="config.xml" parent="/*">
   1.106 +            <feature name="SplashScreen">
   1.107 +                <param name="wp-package" value="SplashScreen"/>
   1.108 +                <param name="onload" value="true"/>
   1.109 +            </feature>
   1.110 +        </config-file>
   1.111 +
   1.112 +        <source-file src="src/wp/SplashScreen.cs" />
   1.113 +
   1.114 +    </platform>
   1.115 +
   1.116 +    <!-- windows8 -->
   1.117 +    <platform name="windows8">
   1.118 +        <js-module src="www/windows8/SplashScreenProxy.js" name="SplashScreenProxy">
   1.119 +            <merges target="" />
   1.120 +        </js-module>
   1.121 +    </platform>
   1.122 +
   1.123 +    <!-- tizen -->
   1.124 +    <platform name="tizen">
   1.125 +        <js-module src="src/tizen/SplashScreenProxy.js" name="SplashScreenProxy">
   1.126 +            <runs />
   1.127 +        </js-module>
   1.128 +    </platform>
   1.129 +</plugin>

mercurial