phonegap / build

This is the public repository for PhoneGap Build source and bug tracking
92 stars 33 forks source link

Phonegap default icon in iOs #608

Closed PedroJunior99 closed 6 years ago

PedroJunior99 commented 6 years ago

I've some troubles when my app is executing. My app was set to Phonegap Icon but my icons in config.xml are correct. With other apps developed by me has the same config.xml but don't have the same problem than this app.

Note: This trouble only happens in iOs.

This is my config.xml

    <icon gap:platform="ios" height="57" src="res/icons/ios/icon.png" width="57" />
    <icon gap:platform="ios" height="72" src="res/icons/ios/icon-72.png" width="72" />
    <icon gap:platform="ios" height="114" src="res/icons/ios/icon-57-2x.png" width="114" />
    <icon gap:platform="ios" height="144" src="res/icons/ios/icon-72@2x.png" width="144" />
    <icon gap:platform="ios" height="76" src="res/icons/ios/icon-76.png" width="76" />
    <icon gap:platform="ios" height="120" src="res/icons/ios/icon-60@2x.png" width="120" />
    <icon gap:platform="ios" height="180" src="res/icons/ios/icon-60@3x.png" width="180" />
    <icon gap:platform="ios" height="152" src="res/icons/ios/icon-76@2x.png" width="152" />
    <icon src="res/icons/ios/icon.png" />
    <icon gap:density="ldpi" gap:platform="android" src="res/icons/android/icon36.png" />
    <icon gap:density="mdpi" gap:platform="android" src="res/icons/android/icon48.png" />
    <icon gap:density="hdpi" gap:platform="android" src="res/icons/ios/icon-72.png" />
    <icon gap:density="xhdpi" gap:platform="android" src="res/icons/android/icon96.png" />
    <icon gap:density="xxhdpi" gap:platform="android" src="res/icons/ios/icon-72@2x.png" />
    <icon gap:density="xxxhdpi" gap:platform="android" src="res/icons/android/icon192.png" />
    <icon gap:platform="winphone" src="res/icon/windows-phone/icon-48.png" />
    <icon gap:platform="winphone" gap:role="background" src="res/icon/windows-phone/icon-173.png" />
    <icon gap:platform="webos" src="res/icon/webos/icon-64.png" />
    <gap:splash gap:density="ldpi" gap:platform="android" src="res/splash/Default-568h@2x~iphone.png" />
    <gap:splash gap:density="mdpi" gap:platform="android" src="res/splash/Default~iphone.png" />
    <gap:splash gap:density="hdpi" gap:platform="android" src="res/splash/Default~iphone.png" />
    <gap:splash gap:density="xhdpi" gap:platform="android" src="res/splash/Default-Portrait~ipad.png" />
    <gap:splash gap:density="xxhdpi" gap:platform="android" src="res/splash/Default-Portrait@2x~ipad.png" />
    <gap:splash gap:platform="ios" height="480" src="res/splash/Default~iphone.png" width="320" />
    <gap:splash gap:platform="ios" height="960" src="res/splash/Default-Portrait@2x~ipad.png" width="640" />
    <gap:splash gap:platform="ios" height="1136" src="res/splash/Default-568h@2x~iphone.png" width="640" />
    <gap:splash gap:platform="ios" height="1334" src="res/splash/Default~iphone.png" width="750" />
    <gap:splash gap:platform="ios" height="2208" src="res/splash/Default-Portrait@2x~ipad.png" width="1242" />
    <gap:splash gap:platform="ios" height="1242" src="res/splash/Default-Landscape@2x~ipad.png" width="2208" />
    <gap:splash gap:platform="ios" height="1024" src="res/splash/Default~iphone.png" width="768" />
    <gap:splash gap:platform="ios" height="768" src="res/splash/Default-Landscape.png" width="1024" />
    <gap:splash gap:platform="ios" height="2048" src="res/splash/Default-Portrait@2x~ipad.png" width="1536" />
    <gap:splash gap:platform="ios" height="1536" src="res/splash/Default-Landscape@2x~ipad.png" width="2048" />
    <platform name="ios">
        <splash height="480" src="res/screen/ios/Default~iphone.png" width="320" />
        <splash height="960" src="res/screen/ios/Default@2x~iphone.png" width="640" />
        <splash height="1024" src="res/screen/ios/Default-Portrait~ipad.png" width="768" />
        <splash height="2048" src="res/screen/ios/Default-Portrait@2x~ipad.png" width="1536" />
        <splash height="768" src="res/screen/ios/Default-Landscape~ipad.png" width="1024" />
        <splash height="1536" src="res/screen/ios/Default-Landscape@2x~ipad.png" width="2048" />
        <splash height="1136" src="res/screen/ios/Default-568h@2x~iphone.png" width="640" />
    </platform>

Where phonegap's icon is showing

wildabeast commented 6 years ago

You're missing several iOS icons, have a look at the docs.