cordova - PhoneGap - No splashscreen appearing -
i'm new phonegap , installed sample app described here. app compiles , gets installed on android device quickly. however, standard splash screen not show up. copied png image platforms/android/res/drawable folder, have still no success.
the configuration splash screen looks this:
<gap:splash src="res/screen/android/screen-ldpi-portrait.png" gap:platform="android" gap:density="ldpi" /> <gap:splash src="res/screen/android/screen-mdpi-portrait.png" gap:platform="android" gap:density="mdpi" /> <gap:splash src="res/screen/android/screen-hdpi-portrait.png" gap:platform="android" gap:density="hdpi" /> <gap:splash src="res/screen/android/screen-xhdpi-portrait.png" gap:platform="android" gap:density="xhdpi" /> <gap:splash src="res/screen/blackberry/screen-225.png" gap:platform="blackberry" /> <gap:splash src="res/screen/ios/screen-iphone-portrait.png" gap:platform="ios" width="320" height="480" /> <gap:splash src="res/screen/ios/screen-iphone-portrait-2x.png" gap:platform="ios" width="640" height="960" /> <gap:splash src="res/screen/ios/screen-ipad-portrait.png" gap:platform="ios" width="768" height="1024" /> <gap:splash src="res/screen/ios/screen-ipad-landscape.png" gap:platform="ios" width="1024" height="768" /> <gap:splash src="res/screen/windows-phone/screen-portrait.jpg" gap:platform="winphone" />
the images there.
what doing wrong here?
i had copy splash screen manually platforms folder. file had named "splash.png". furthermore, had add
<preference name="splashscreen" value="splash" /> <preference name="splashscreendelay" value="10000" />
into config.xml file.
Comments
Post a Comment