My client is asking me to distribute a demo app that should only be allowed to run for 5 days from the date of distribution. Is there a way for me to reduce the valid date of a provisioning profile in the iPhone provisioning portal to, say, 5 days, instead of the default 1 year for an ad-hoc distribution provisioning profile?

Thanks!

link|improve this question

69% accept rate
did you find a solution for this?? – lukya Aug 12 '10 at 6:41
feedback

1 Answer

up vote 1 down vote accepted

If you know the date of distribution, why don't you just hardcode it in your app and make sure that the app quits (exit(0)) if launched after fifth day? Apple suggests not to use exit(0) but its an ad-hoc distribution anyway..

link|improve this answer
1  
It would be a lot nicer to put up an "Expired" alert rather than quitting! You don't want clients to think the app crashed because it was buggy. – progrmr Jul 29 '10 at 15:06
1  
Yes, that's what I did. However, that can be manipulated by setting back the clock. I want a more robust solution if possible. – futureelite7 Jul 29 '10 at 20:07
@futureelite7 once the expiration notice appears, set a flag that trumps the date, check if that flag is true, if it is true, always show the expiration notice regardless of the date. – Chris Wagner Dec 14 '11 at 23:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.