0

I have an app on store and all client are used it. Sometimes some client needs additional feature that isn't wanted by others so in that case I make AdHoc build for that particular client, but it is not proper solution.

I think on Enterprise solution but apple not allowed to distribute outside the organization in it and I have all users are clients.

James Z
  • 12,209
  • 10
  • 24
  • 44
user2017279
  • 80
  • 1
  • 11

1 Answers1

0

If your app has a user login, download a user specific configfile directly after login and check in code for feature availability by looking into it. Large companies like Spotify and also startups do it this way to test new features without releasing them to all.

ObjectAlchemist
  • 1,109
  • 1
  • 9
  • 18
  • My purpose is not testing but maintain different version of app for different client for long time. So i need a Place like store have all version of my app and client visit at there and download appropriate version. – user2017279 Apr 14 '17 at 10:07
  • What's wrong with it. You can use it for testing features and/or releasing features to specific clients. It doesn't matter. I think it's the best solution for your case. Make one app with everything inside and configure it depending by login for every person/group as you like. I already worked with several apps on same code base and it's a pain to handle. Sooner or later you combine it in one configurable app. – ObjectAlchemist Apr 14 '17 at 10:47