2013-04-03 10:47:26 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-04-16 16:22:15 -04:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
-->
|
2013-04-03 10:47:26 -07:00
|
|
|
|
2013-07-24 14:50:19 -07:00
|
|
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
2015-04-01 16:41:33 -07:00
|
|
|
id="cordova-plugin-splashscreen"
|
2015-06-17 17:35:36 -07:00
|
|
|
version="2.1.1-dev">
|
2013-04-03 10:47:26 -07:00
|
|
|
<name>Splashscreen</name>
|
2013-07-30 15:32:31 -07:00
|
|
|
<description>Cordova Splashscreen Plugin</description>
|
2013-08-06 14:52:52 -07:00
|
|
|
<license>Apache 2.0</license>
|
2013-07-30 15:32:31 -07:00
|
|
|
<keywords>cordova,splashscreen</keywords>
|
2013-10-22 14:02:04 -07:00
|
|
|
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen.git</repo>
|
|
|
|
<issue>https://issues.apache.org/jira/browse/CB/component/12320653</issue>
|
2013-04-03 10:47:26 -07:00
|
|
|
|
2014-12-11 11:15:01 -05:00
|
|
|
<engines>
|
|
|
|
<engine name="cordova-android" version=">=3.6.0" /><!-- Requires CordovaPlugin.preferences -->
|
|
|
|
</engines>
|
2013-07-24 14:50:19 -07:00
|
|
|
|
2013-05-21 12:14:06 -07:00
|
|
|
<js-module src="www/splashscreen.js" name="SplashScreen">
|
|
|
|
<clobbers target="navigator.splashscreen" />
|
|
|
|
</js-module>
|
|
|
|
|
2013-04-03 10:47:26 -07:00
|
|
|
<!-- android -->
|
|
|
|
<platform name="android">
|
2013-05-20 18:09:02 -07:00
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
2013-05-21 12:14:06 -07:00
|
|
|
<feature name="SplashScreen">
|
2014-11-17 23:48:45 -08:00
|
|
|
<param name="android-package" value="org.apache.cordova.splashscreen.SplashScreen"/>
|
|
|
|
<param name="onload" value="true"/>
|
2013-05-21 12:14:06 -07:00
|
|
|
</feature>
|
2013-04-03 10:47:26 -07:00
|
|
|
</config-file>
|
|
|
|
|
2013-07-31 19:57:24 -04:00
|
|
|
<source-file src="src/android/SplashScreen.java" target-dir="src/org/apache/cordova/splashscreen" />
|
2013-05-21 12:14:06 -07:00
|
|
|
</platform>
|
2013-04-03 10:47:26 -07:00
|
|
|
|
2013-10-18 15:29:57 -07:00
|
|
|
<!-- amazon-fireos -->
|
|
|
|
<platform name="amazon-fireos">
|
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
|
|
<feature name="SplashScreen">
|
|
|
|
<param name="android-package" value="org.apache.cordova.splashscreen.SplashScreen"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<source-file src="src/android/SplashScreen.java" target-dir="src/org/apache/cordova/splashscreen" />
|
|
|
|
</platform>
|
2015-04-25 14:55:21 -07:00
|
|
|
|
2013-10-16 22:16:33 +04:00
|
|
|
<!-- ubuntu -->
|
|
|
|
<platform name="ubuntu">
|
|
|
|
<header-file src="src/ubuntu/splashscreen.h" />
|
|
|
|
<source-file src="src/ubuntu/splashscreen.cpp" />
|
|
|
|
</platform>
|
|
|
|
|
2013-05-21 12:14:06 -07:00
|
|
|
<!-- ios -->
|
|
|
|
<platform name="ios">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="SplashScreen">
|
2013-05-21 13:13:42 -07:00
|
|
|
<param name="ios-package" value="CDVSplashScreen"/>
|
2013-07-26 12:03:07 -07:00
|
|
|
<param name="onload" value="true"/>
|
2013-05-21 12:14:06 -07:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
2015-05-07 17:35:10 -07:00
|
|
|
<header-file src="src/ios/CDVSplashScreen.h" />
|
|
|
|
<source-file src="src/ios/CDVSplashScreen.m" />
|
|
|
|
<header-file src="src/ios/CDVViewController+SplashScreen.h" />
|
|
|
|
<source-file src="src/ios/CDVViewController+SplashScreen.m" />
|
2013-11-19 12:43:12 +02:00
|
|
|
|
2013-07-23 17:09:09 -07:00
|
|
|
<framework src="CoreGraphics.framework" />
|
2013-05-20 18:09:02 -07:00
|
|
|
</platform>
|
2013-05-21 12:14:06 -07:00
|
|
|
|
2013-06-21 13:57:28 -07:00
|
|
|
<!-- blackberry10 -->
|
|
|
|
<platform name="blackberry10">
|
|
|
|
<source-file src="src/blackberry10/index.js" target-dir="SplashScreen" />
|
|
|
|
<config-file target="www/config.xml" parent="/widget">
|
|
|
|
<feature name="SplashScreen" value="SplashScreen"/>
|
|
|
|
</config-file>
|
|
|
|
</platform>
|
|
|
|
|
2013-07-09 17:10:13 -07:00
|
|
|
<!-- wp8 -->
|
|
|
|
<platform name="wp8">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="SplashScreen">
|
|
|
|
<param name="wp-package" value="SplashScreen"/>
|
2014-05-29 17:40:38 -07:00
|
|
|
<param name="onload" value="true"/>
|
2013-07-09 17:10:13 -07:00
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<source-file src="src/wp/SplashScreen.cs" />
|
2015-04-25 14:55:21 -07:00
|
|
|
<source-file src="src/wp/ResolutionHelper.cs" />
|
2013-07-09 17:10:13 -07:00
|
|
|
|
|
|
|
</platform>
|
|
|
|
|
2013-08-01 16:34:03 -07:00
|
|
|
<!-- windows8 -->
|
|
|
|
<platform name="windows8">
|
2015-02-06 18:15:08 +03:00
|
|
|
<js-module src="www/windows/SplashScreenProxy.js" name="SplashScreenProxy">
|
|
|
|
<merges target="" />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
|
|
|
|
|
|
|
<!-- windows -->
|
|
|
|
<platform name="windows">
|
|
|
|
<js-module src="www/windows/SplashScreenProxy.js" name="SplashScreenProxy">
|
2013-08-01 16:34:03 -07:00
|
|
|
<merges target="" />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
|
|
|
|
2013-11-19 12:43:12 +02:00
|
|
|
<!-- tizen -->
|
|
|
|
<platform name="tizen">
|
2013-11-19 13:11:59 +02:00
|
|
|
<js-module src="src/tizen/SplashScreenProxy.js" name="SplashScreenProxy">
|
2013-11-19 14:01:13 +02:00
|
|
|
<runs />
|
2013-11-19 12:43:12 +02:00
|
|
|
</js-module>
|
2013-11-19 13:04:30 +02:00
|
|
|
</platform>
|
2015-01-15 14:06:38 +03:00
|
|
|
|
|
|
|
<!-- browser -->
|
|
|
|
<platform name="browser">
|
|
|
|
<js-module src="src/browser/SplashScreenProxy.js" name="SplashScreenProxy">
|
|
|
|
<runs />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
2013-04-03 10:47:26 -07:00
|
|
|
</plugin>
|