0

I have a SaaS product and each of my clients want an app which has their name and branding such as app logo etc. Is there any way both in android and ios or in react native to determine the user and change the app logo and name dynamically

Rohit5k2
  • 17,948
  • 8
  • 45
  • 57
user9538877
  • 188
  • 1
  • 17

1 Answers1

1

You can release multiple apps with same source code by rebranding app details in both iOS and Android such as

  1. App icon,
  2. App name,
  3. Bundle Identifier(iOS) / Package Name(Android),
  4. Screenshots,
  5. Launch Screen,
  6. Custom changes if required any.

But its not possible to change app icon and app name after its installed in mobile.

Reff Apple's documentation for iOS app:

You can change the name of your existing app only when submitting an update of your app binary. If you submit an app name which is already in use within the same geography in which your app is sold, you will be prompted to enter another name.

Rajesh Loganathan
  • 11,129
  • 4
  • 78
  • 90