AppSales-Mobile icon indicating copy to clipboard operation
AppSales-Mobile copied to clipboard

App Icons Not Updating

Open peetz opened this issue 13 years ago • 2 comments

I have updated my icons in the AppStore, but the old Icons are still showing. The icons have been updated at appshopper.com.

How can I get these changes to be reflected in the app?

peetz avatar May 23 '12 09:05 peetz

Anyone else experiencing this?

To clarify, I updated my app icon which has already changed on AppStore. However, the old app icons are still showing in AppSales Mobile. How can I "force" them to refresh?

peetz avatar Jun 07 '12 17:06 peetz

Theres no way currently to refresh icons by the looks of it, once an icon is found or failed to be found thats it for ever. I had a related problem where the first time it tried to find my app icons it couldn't because the apps had only just been released.

I fixed it by commenting out the code which loads the icon from file, which forced it to go and grab the icons again from appshopper. Got to file IconManager.m and comment out lines 63-67 :

/*NSString *iconPath = [[self iconDirectory] stringByAppendingPathComponent:appID];
UIImage *icon = [[[UIImage alloc] initWithContentsOfFile:iconPath] autorelease];
if (icon) {
    return icon;
}*/

Run the app once. It will refresh and save the new icons. Uncomment those lines and run to return to normal, otherwise each time you run appsales its going to try and fetch and save your icons all over again.

afehners avatar Sep 03 '12 19:09 afehners