chill117 commented on issue #689: URL: https://github.com/apache/cordova-android/issues/689#issuecomment-800972665
The cordova splash plugin is *not* required to fix the "MissingDefaultResource" errors. You need to add something like the following to your config.xml file to define the defaults/fallbacks: ```xml <splash src="res/screen/android/splash-port-hdpi.png" density="hdpi"/> <splash src="res/screen/android/splash-port-ldpi.png" density="ldpi"/> <splash src="res/screen/android/splash-port-mdpi.png" density="mdpi"/> <splash src="res/screen/android/splash-port-xhdpi.png" density="xhdpi"/> <splash src="res/screen/android/splash-port-xxhdpi.png" density="xxhdpi"/> ``` See [cordova docs](https://cordova.apache.org/docs/en/10.x/reference/cordova-plugin-splashscreen/#example-android-configuration) for more details. ---------------------------------------------------------------- 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]
