Lena Bru
Lena Bru

Reputation: 13947

Faster way to build app for testing

I have an ios app that needs to be regularly tested. It has over 500 source files, and it take like 5 minutes to compile it all.

Archiving it takes over 15 minutes

creating a distribution another 2 minutes

this whole process is very painful 30 minutes , and when i need tobuild it once every 10 minutes, this is even more painful

is there a more pain free method of doing this ?

Upvotes: 2

Views: 59

Answers (1)

ipraba
ipraba

Reputation: 16553

Two words. Continuous Integration.

Apple introduced Bots for Xcode 5. Which will do automation of build deployments. But you need to set those things which at first can take more time.

Also you can make your work much simpler with Testflight. Try this

Upvotes: 1

Related Questions