ohho
ohho

Reputation: 51921

When will a development version of iPhone app expired?

If an app is installed on iPhone via debug run, when will it be expired?

Upvotes: 2

Views: 315

Answers (2)

Kjuly
Kjuly

Reputation: 35131

Just as @aroth said

When your development provisioning profile expires, most likely.

which including Development & Distribution (AppStore, Ad-Hoc) provisioning profile. You can check the expiration time at

Xcode -> Organizer -> Devices -> Your Device -> Provisioning profiles -> Your Dev provisioning profile -> Expiration

And it also might be a file like iOS Team Provisioning Profile. In this case, you don't need to create a development provisioning profile every time for your new App.

Upvotes: 0

Mick MacCallum
Mick MacCallum

Reputation: 130193

It will stop working when its provisioning profile expires. You can look up this date either in Apple's provisioning portal or in Xcode's organizer window (command+shift+2)

enter image description here

Upvotes: 1

Related Questions