How to programmatically remove an application icon from a broken iPhone application?

How to remove my application icon for the functionality of my application? I want to do this only on jailbreak devices.

+4
source share
1 answer

You must modify the Info.plist file in your application bundle to include this:

<key>SBAppTags</key> <array> <string>hidden</string> </array> 

( source )

+6
source

All Articles