How to remove my application icon for the functionality of my application? I want to do this only on jailbreak devices.
You must modify the Info.plist file in your application bundle to include this:
<key>SBAppTags</key> <array> <string>hidden</string> </array>
( source )