Reputation: 1492
I'm working on an app made with Unity, however when I build it from Xcode right on to my iPad I still have the Unity logo when you double click the home button and find recent apps
See image for example: https://i.sstatic.net/2OY12.jpg
I've tried finding every possible icon change function in the Unity project as well as the Xcode project.
This most likely has nothing to do with the code of the file, since it's pre-compiled by Unity.
I would like to get this icon to have the same icon as my launch icon and app store icon. All of those work fine.
I was wondering if this maybe had something to with the app being loaded straight from Xcode and not from the App Store.
I hope you guys can help me fix this problem! :-)
Upvotes: 0
Views: 1359
Reputation: 33
It's because of cache.
Try to clean build. That should help you.
Upvotes: 1
Reputation:
This happens because iOS devices do not delete the cache once you delete the application. Due to this, icon and even the splash images remain the old one. Try deleting the app from your iPad and then restart your iPad device so that no cache remains. Once restarted, install the app from Xcode.
Upvotes: 1