andreszs commented on issue #1497:
URL:
https://github.com/apache/cordova-android/issues/1497#issuecomment-1698218261
For anyone else using vanilla Cordova, the solution is to se the proper
theme for AndroidManifest.xml in your **config.xml** as follows:
```xml
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge"
target="/manifest/application">
<activity android:theme="@style/Theme.App.SplashScreen"></activity>
</edit-config>
```
This requires the XML namespace
`xmlns:android="http://schemas.android.com/apk/res/android"` in your <widget>
element in config.xml.
--
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]