5

I an working with cordova 6 to manually hide the splashscreen with navigator.splashscreen.hide(). The app is in angular. It works fine with all android versions below 5.0.

However the white screen persists for Lollipop and Marshmallow.

Is there an issue with the android APIs for higher versions?

Nishat Lakhani
  • 733
  • 1
  • 8
  • 20
Sankalp Tambe
  • 400
  • 4
  • 15
  • please list out the which plugin are used to implement splashscreen – Santosh Shinde May 30 '16 at 04:34
  • cordova-plugin-splashscreen - 3.2.2, cordova - 6.2.0, cordova-plugin-file - 4.2.0, cordova-plugin-geolocation - 2.2.0, cordova-plugin-whitelist - 1.2.2, cordova-plugin-compat - 1.0.0 – Sankalp Tambe May 30 '16 at 04:47
  • The code works and runs in background. The white screen stays on top of it. If I minimize the app or tap on white screen it goes off. weird !! – Sankalp Tambe May 30 '16 at 04:52

1 Answers1

2

Yes,And its not a problem with angular its problem with incompatible versions of plugins and platform for that you need to upgrade your plugin to higher version or keep your platform to lower version. And main dependency thing in cordova is if you want to update your platform you need update npm first, if you want to update your npm you need to update node.js first.

NGB
  • 71
  • 1
  • 15