Radio Player UK.com
Radio Player UK.com

Reputation: 3

"The 128x128 icon file is missing" error when publishing Chrome app

I'm getting a serious issue with uploading an app to Chrome Store. Keeps saying:

"An error occurred: Failed to process your item.

The 128x128 icon file is missing.".

I do have the 128x128 .png file in there. This is my .json file:

{
    "name": "Radio Player UK",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Radio, but without the rubbish. The best radio stations are here. Choose from lots of great radio stations.",
    "app":{
        "urls": ["http://www.radioplayeruk.com"],
        "launch":{
            "web_url": "http://www.radioplayeruk.com/index.php"
        }
    },
    "icons":{
        "icons": {
            "16": "logo16.png",
            "128": "logo.png"
        }
    }
}

I know the file extensions are case sensitive and have adjusted this accordingly.

Can anybody shed some light on why I keep getting this message?

Upvotes: 0

Views: 454

Answers (1)

elboletaire
elboletaire

Reputation: 5367

You have set the icons twice. According to the Google docs it should be just one icons key.

So, your manifest should be:

{
    "name": "Radio Player UK",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Radio, but without the rubbish. The best radio stations are here. Choose from lots of great radio stations.",
    "app":{
        "urls": ["http://www.radioplayeruk.com"],
        "launch":{
            "web_url": "http://www.radioplayeruk.com/index.php"
        }
    },
    "icons": {
        "16": "logo16.png",
        "128": "logo.png"
    }
}

Upvotes: 1

Related Questions