Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enterprise iOS App slow to launch

Tags:

ios

I have an enterprise provisioned iOS Application for Testing & Preview. It's been acting strange lately, when deploy to an iPhone, it will launch and idle for a few seconds and then minimize. After the 1st launch, the later launch is OK. It's as though the App is trying to verify something on first launch.

I heard that this could be related to Mobile Provisioning file that contain too many applications. How can I tell if this is indeed the problem?

like image 807
Kenny Lim Avatar asked Nov 08 '22 06:11

Kenny Lim


1 Answers

  • You would like yo create a build with minimal things going on in Application_didFinishLaunchingWithOption.

  • Check your iPhone for update.

  • Its certainly not a provisioning profile issue.

Either one of your dependency is trying to do that. else their is too much memory leak.

like image 152
coreDeviOS Avatar answered Nov 14 '22 23:11

coreDeviOS