pixelfairy
pixelfairy

Reputation: 1625

Is it possible to have multiple configurable app icons for a mobile app (iOS + Android)?

I'm designing an app that serves a bunch of different instances. Each user belongs to an instance of the platform and when they authenticate I'd like to change the styling of the app icon to reflect their instance.

Ideally, there would be a generic icon when they download from the app store then once they authenticate we'd show their team-specific icon.

Is this possible? ..on both iOS and Android or either?

The development team is building the app in React Native and exporting to iOS and Android. I'm drawing the icons.

Upvotes: 3

Views: 2262

Answers (1)

Arash Tabrizian
Arash Tabrizian

Reputation: 146

For previous versions of iOS I believe it is not possible but as of iOS 10.3 you can do this using:

set​Alternate​Icon​Name(_:​completion​Handler:​)

and for android check this: How to change an application icon programmatically in android

Upvotes: 1

Related Questions