How do I make iPhone SpringBoard show two or more icons for one application bundle? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:47:59Z http://stackoverflow.com/feeds/question/219037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/219037/how-do-i-make-iphone-springboard-show-two-or-more-icons-for-one-application-bundl 3 How do I make iPhone SpringBoard show two or more icons for one application bundle? Stream 2008-10-20T16:22:45Z 2008-10-21T01:33:01Z <p>It seems like <code>Info.plist</code> file has an ability to declare different roles for the same application bundle through the <code>UIRoleInfo</code> key. SpringBoard can recognize these roles after installing an app and may display separate icons for each application role.</p> <p>For instance, iPhone shows <code>MobileSlideShow.app</code> as 2 different programs: <code>Photos</code> and <code>Camera</code>.</p> <p>Unfortunately, there is no official Apple documentation about the subject at the moment. Would anybody advise how to organize the same behavior in a custom app?</p> <p>This feature is going to be used in the Enterprise product for ad hoc distribution.</p> http://stackoverflow.com/questions/219037/how-do-i-make-iphone-springboard-show-two-or-more-icons-for-one-application-bundl/219678#219678 1 Answer by Eric Albert for How do I make iPhone SpringBoard show two or more icons for one application bundle? Eric Albert 2008-10-20T19:57:31Z 2008-10-20T19:57:31Z <p>This isn't a supported feature, so if you do this you might have a hard time getting your app through the approval process. I wouldn't recommend using it.</p> http://stackoverflow.com/questions/219037/how-do-i-make-iphone-springboard-show-two-or-more-icons-for-one-application-bundl/220453#220453 -1 Answer by Chris Lundie for How do I make iPhone SpringBoard show two or more icons for one application bundle? Chris Lundie 2008-10-21T00:59:16Z 2008-10-21T00:59:16Z <p>Have you tried it to see if it works? If it doesn't work, you could create a second app that does nothing but launch the first one, with a custom URL scheme. The first app can recognize when it is being launched with that URL. This is not ideal as you will see the second app launch &amp; quit (though it should be really fast).</p>