zommerfelds opened a new issue, #1557: URL: https://github.com/apache/cordova-android/issues/1557
# Feature Request ## Motivation Behind Feature I would like to avoid setting up Android Studio and simplify the setup as much as possible. In the iOS specific documentation (https://cordova.apache.org/docs/en/11.x/core/features/splashscreen/index.html#single-image-launch-screen) there is a "Single-image launch screen" option. However, on Android this option doesn't exist and one is forced to go through the process of setting up an XML file with all the properties. It would be nice if this was easier ## Feature Description Basically it would be nice if this was supported for Android: ``` <splash src="res/.../splashscreen.png" /> ``` I just want a single simple icon to show in the middle of the screen. If Cordova could generate the XML file for me I would be very happy. ## Alternatives or Workarounds It is actually possible to put a PNG directly in the splashscreen like this: ``` <platform name="android"> <preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/.../splashscreen.png"/> </platform> ``` However, the image can be cropped. The other alternative is to use the Image Asset Editor tool as described in https://lessons.livecode.com/m/4069/l/1496759-how-to-create-and-use-adaptive-icons-on-android. However, I would like to create a setup where this tool is not needed for simple applications. Thank you! -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
