4

How to remove my application icon for my app functionality? I want to do it only in jail break devices.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Code Hunter
  • 10,075
  • 23
  • 72
  • 102

1 Answers1

6

You have to modify the Info.plist file in your app bundle to include this:

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

(source)

  • 1
    Thanks man. Tell me one thing more. It will be applicable only for Jail Break devices or for all devices. – Code Hunter Dec 09 '12 at 16:16
  • 2
    @ChandraPrakash it works on all devices, but it won't be accepted in the AppStore. –  Dec 09 '12 at 16:17
  • 2
    iOS8 beta 5: field from the application plist is only being read if it's a system application - anyone has a different solution? – Roman Blachman Sep 02 '14 at 15:57
  • @RomanBlachman>>System application means, default/apple apps? I'm also looking for the iOS8 solution. kindly share, if you have got any solutions. – Veera Raj Sep 15 '14 at 10:26
  • @RomanBlachman By System application, do you mean the default Apple apps installed on the device?? – Satheesh Sep 17 '14 at 07:37