Wir verwendeten Phonegap 3.7.0 bis jetzt und alles funktionierte einwandfrei. Jetzt müssen wir auf Phonegap 6.1.0 upgraden und damit haben wir Probleme mit dem Splash-Screen auf iOS und der Anwendungsbildschirm funktioniert auch nicht richtig. Unten sehen Sie, wie wir den Login-Bildschirm sehen: enter image description here Wir verwenden cordova cordova-plugin-splashscreen und in config.xml haben wir Anweisungen hinzugefügt, wie in der Dokumentation zu diesem Plugin erwähnt, aber irgendwie Splash-Bildschirm ist nicht sichtbar.cordova - Splashscreen und App-Bildschirm funktioniert nicht auf Phonegap Build cli-6.1.0
Unten finden Sie den Code wir in config.xml hinzugefügt haben:
<platform>
<gap:splash src="splash/ios/Default~iphone.png" width="320" height="480"/>
<gap:splash src="splash/ios/[email protected]~iphone.png" width="640" height="960"/>
<gap:splash src="splash/ios/Default-Portrait~ipad.png" width="768" height="1024"/>
<gap:splash src="splash/ios/[email protected]~ipad.png" width="1536" height="2048"/>
<gap:splash src="splash/ios/Default-Landscape~ipad.png" width="1024" height="768"/>
<gap:splash src="splash/ios/[email protected]~ipad.png" width="2048" height="1536"/>
<gap:splash src="splash/ios/[email protected]~iphone.png" width="640" height="1136"/>
<gap:splash src="splash/ios/Default-667h.png" width="750" height="1334"/>
<gap:splash src="splash/ios/Default-736h.png" width="1242" height="2208"/>
<gap:splash src="splash/ios/Default-Landscape-736h.png" width="2208" height="1242"/>
</platform>
<preference name="SplashScreenDelay" value="4000" />
<preference name="AutoHideSplashScreen" value="false" />
<preference name="FadeSplashScreen" value="false"/>
<preference name="SplashShowOnlyFirstTime" value="false" />
<preference name="SplashMaintainAspectRatio" value="true" />
<plugin name="cordova-plugin-splashscreen" source="npm" />