When opening my cordova app from deep links, the Android splash screen icon doesn't show.
I found out this is by design in Android, and to have it show, I need to add this to the theme style:
<item name="android:windowSplashScreenBehavior">icon_preferred</item>
How can I add this to the themes.xml file that is dynamically created by cordova cli when I compile the app?
Android documentation https://developer.android.com/develop/ui/views/launch/splash-screen#set-theme
Thanks!
When opening my cordova app from deep links, the Android splash screen icon doesn't show.
I found out this is by design in Android, and to have it show, I need to add this to the theme style:
<item name="android:windowSplashScreenBehavior">icon_preferred</item>How can I add this to the themes.xml file that is dynamically created by cordova cli when I compile the app?
Android documentation https://developer.android.com/develop/ui/views/launch/splash-screen#set-theme
Thanks!