[ 
https://issues.apache.org/jira/browse/CB-10263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15071915#comment-15071915
 ] 

ASF GitHub Bot commented on CB-10263:
-------------------------------------

GitHub user daserge opened a pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/69

    CB-10263 Fix splashscreen plugin filenames for Asset Catalog

    [Jira issue](https://issues.apache.org/jira/browse/CB-10263)

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/MSOpenTech/cordova-plugin-splashscreen 
CB-10263

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/cordova-plugin-splashscreen/pull/69.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #69
    
----
commit 4e821fe444bac97c90980e2922bd504b059f2a30
Author: daserge <[email protected]>
Date:   2015-12-26T16:43:58Z

    CB-10263 Fix splashscreen plugin filenames for Asset Catalog

----


> Fix splashscreen plugin filenames for Asset Catalog
> ---------------------------------------------------
>
>                 Key: CB-10263
>                 URL: https://issues.apache.org/jira/browse/CB-10263
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin SplashScreen
>         Environment: [email protected]
>            Reporter: Sergey Shakhnazarov
>            Assignee: Sergey Shakhnazarov
>            Priority: Critical
>              Labels: ios
>
> {code}
> cordova create test
> cd test
> cordova platform add ios@4
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> {code}
> {code}
> // add to config.xml:
>     <platform name="ios">
>         <allow-intent href="itms:*" />
>         <allow-intent href="itms-apps:*" />
>         <splash src="res/screen/ios/Default~iphone.png" width="320" 
> height="480"/>
>         <splash src="res/screen/ios/Default@2x~iphone.png" width="640" 
> height="960"/>
>         <splash src="res/screen/ios/Default-Portrait~ipad.png" width="768" 
> height="1024"/>
>         <splash src="res/screen/ios/Default-Portrait@2x~ipad.png" 
> width="1536" height="2048"/>
>         <splash src="res/screen/ios/Default-Landscape~ipad.png" width="1024" 
> height="768"/>
>         <splash src="res/screen/ios/Default-Landscape@2x~ipad.png" 
> width="2048" height="1536"/>
>         <splash src="res/screen/ios/Default-568h@2x~iphone.png" width="640" 
> height="1136"/>
>         <splash src="res/screen/ios/Default-667h.png" width="750" 
> height="1334"/>
>         <splash src="res/screen/ios/Default-736h.png" width="1242" 
> height="2208"/>
>         <splash src="res/screen/ios/Default-Landscape-736h.png" width="2208" 
> height="1242"/>
>         <preference name="AutoHideSplashScreen" value="false" />
>         <preference name="FadeSplashScreen" value="true"/>
>         <preference name="FadeSplashScreenDuration" value="1500"/>
>     </platform>
>     <preference name="SplashScreenDelay" value="2000" />
>     <preference name="ShowSplashScreenSpinner" value="true"/>
>     <preference name="Orientation" value="all"/>
> {code}
> {code}
> // add to index.js deviceready event:
> setTimeout(navigator.splashscreen.hide, 3000);
> {code}
> {code}
> cordova emulate ios --target=iPhone-6-Plus
> {code}
> Splash screen will be shown briefly and after that the image will disappear 
> leaving only the spinner.
> The following message will be logged out:
> *WARNING: The splashscreen image named LaunchImage-736h was not found*



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to