I can change the color of status bar in android, using the following code:
if (cordova.platformId == 'android') {
StatusBar.backgroundColorByHexString("#0974aa");
}
Because I have to write this code in onDeviceReady
event handler, it will be executed after the program loaded completely(after the splash screen).
I want to have this color while displaying splash screen, too.
What can I do?