infacto commented on issue #689: URL: https://github.com/apache/cordova-android/issues/689#issuecomment-697318540
Confirmed: Adding the density without "land-" or "port-" fixes the issue. But what's the correct sizes? Is the default density (without prefix) for portait (port)? So I can use the same images or better, remove the density with prefix "port-"? ```xml <splash density="ldpi" src="resources/android/splash/drawable-port-ldpi-screen.png"/> <splash density="mdpi" src="resources/android/splash/drawable-port-mdpi-screen.png"/> <splash density="hdpi" src="resources/android/splash/drawable-port-hdpi-screen.png"/> <splash density="xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png"/> <splash density="xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png"/> <splash density="xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png"/> <splash density="land-ldpi" src="resources/android/splash/drawable-land-ldpi-screen.png"/> <splash density="land-mdpi" src="resources/android/splash/drawable-land-mdpi-screen.png"/> <splash density="land-hdpi" src="resources/android/splash/drawable-land-hdpi-screen.png"/> <splash density="land-xhdpi" src="resources/android/splash/drawable-land-xhdpi-screen.png"/> <splash density="land-xxhdpi" src="resources/android/splash/drawable-land-xxhdpi-screen.png"/> <splash density="land-xxxhdpi" src="resources/android/splash/drawable-land-xxxhdpi-screen.png"/> <!-- This can be removed: --> <splash density="port-ldpi" src="resources/android/splash/drawable-port-ldpi-screen.png"/> <splash density="port-mdpi" src="resources/android/splash/drawable-port-mdpi-screen.png"/> <splash density="port-hdpi" src="resources/android/splash/drawable-port-hdpi-screen.png"/> <splash density="port-xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png"/> <splash density="port-xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png"/> <splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png"/> ``` Is this correct? Currently I have all three kinds. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
