Apache Cordova splash screens not showing in Android

后端 未结 9 1519
一生所求
一生所求 2020-12-05 10:24

I am running Apache Cordova 3.6.3-0.2.13. And I try to get the splash screens working. I have followed the documentation on http://cordova.apache.org/docs/en/3.6.0/config_re

9条回答
  •  情深已故
    2020-12-05 10:46

    I'd faced same issue and I've fixed it by using following configuration :-

    install splash screen plugin

    cordova plugin add cordova-plugin-splashscreen
    

    Next we need to add following preference in config.xml,

    
    
    

    Add the Splashscreen images to folders like below

    
        
        
        
        
        
        
        
        
        
        
        
        
    
    

    land-ldpi is not a density but a qualifier

    Therefore the correct each splash tag as below:

    
    

    After above configuration, below step is very important,

    
       
    
    

提交回复
热议问题