You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Sarangan Rajamanickam (JIRA)" <ji...@apache.org> on 2016/03/21 23:09:25 UTC

[jira] [Commented] (CB-9422) is required for Android

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

Sarangan Rajamanickam commented on CB-9422:
-------------------------------------------

Updated the documentation. Refer PR: https://github.com/apache/cordova-plugin-splashscreen/pull/90 

1. The preference name "SplashScreen" is not required for android. With or Without these values, the splash screen files will be copied. 
2. Even if the preference is mentioned, the value attribute is ignored and 'screen' will be used by default. 

> <preference name="SplashScreen" value="screen" /> is required for Android
> -------------------------------------------------------------------------
>
>                 Key: CB-9422
>                 URL: https://issues.apache.org/jira/browse/CB-9422
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Docs
>    Affects Versions: 5.1.1
>            Reporter: Sebastien Lorber
>            Assignee: Sarangan Rajamanickam
>              Labels: Android, Docs-6.x, triaged
>
> When using something like
> {code}
>     <platform name="android">
>         <icon src="www/stample_icon.png" density="ldpi" />
>         <icon src="www/stample_icon.png" density="mdpi" />
>         <icon src="www/stample_icon.png" density="hdpi" />
>         <icon src="www/stample_icon.png" density="xhdpi" />
>         <splash src="www/stample_splash.png" density="land-hdpi"/>
>         <splash src="www/stample_splash.png" density="land-ldpi"/>
>         <splash src="www/stample_splash.png" density="land-mdpi"/>
>         <splash src="www/stample_splash.png" density="land-xhdpi"/>
>         <splash src="www/stample_splash.png" density="port-hdpi"/>
>         <splash src="www/stample_splash.png" density="port-ldpi"/>
>         <splash src="www/stample_splash.png" density="port-mdpi"/>
>         <splash src="www/stample_splash.png" density="port-xhdpi"/>
>     </platform>
> {code}
> The splash screen items are copied to their respestive android folders:
> {code}
> copying image from /home/sebastien/Desktop/Stample-react/cordova/www/stample_splash.png to /home/sebastien/Desktop/Stample-react/cordova/platforms/android/res/drawable-land-hdpi/screen.png
> copying image from /home/sebastien/Desktop/Stample-react/cordova/www/stample_splash.png to /home/sebastien/Desktop/Stample-react/cordova/platforms/android/res/drawable-land-ldpi/screen.png
> copying image from /home/sebastien/Desktop/Stample-react/cordova/www/stample_splash.png to /home/sebastien/Desktop/Stample-react/cordova/platforms/android/res/drawable-land-mdpi/screen.png
> copying image from /home/sebastien/Desktop/Stample-react/cordova/www/stample_splash.png to /home/sebastien/Desktop/Stample-react/cordova/platforms/android/res/drawable-land-xhdpi/screen.png
> copying image from /home/sebastien/Desktop/Stample-react/cordova/www/stample_splash.png to /home/sebastien/Desktop/Stample-react/cordova/platforms/android/res/drawable-port-hdpi/screen.png
> copying image from /home/sebastien/Desktop/Stample-react/cordova/www/stample_splash.png to /home/sebastien/Desktop/Stample-react/cordova/platforms/android/res/drawable-port-ldpi/screen.png
> copying image from /home/sebastien/Desktop/Stample-react/cordova/www/stample_splash.png to /home/sebastien/Desktop/Stample-react/cordova/platforms/android/res/drawable-port-mdpi/screen.png
> copying image from /home/sebastien/Desktop/Stample-react/cordova/www/stample_splash.png to /home/sebastien/Desktop/Stample-react/cordova/platforms/android/res/drawable-port-xhdpi/screen.png
> {code}
> They are always copied with the name "screen.png"
> If we don't use the option
> {code}
> <preference name="SplashScreen" value="screen" />
> {code}
> Then the splash screen we declare in the xml is simply ignored. The value must be = "screen".
> I think this should be documented, or better: be made the default behavior when a splash screen is declared.



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

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org