How do I determine the date(s) an app I developed was downloaded from the App Store?

link|improve this question

If you want to access this from Object-C, say so... otherwise I think this should be on superuser.com. Voting to close. – Doug Neiner Jan 12 '10 at 6:20
2  
Do you want to know the date(s) an app you developed was downloaded from the App Store? – gerry3 Jan 12 '10 at 6:21
gerry3: Yes, that is my requirement . – sandy Jan 12 '10 at 6:34
Doug Neiner: yes, from objective c. – sandy Jan 12 '10 at 6:37
feedback

1 Answer

up vote 5 down vote accepted

I don't know if it violates the SDK agreement, but you can check your iTunesMetadata.plist, which contains a purchaseDate key as an NSDate.

link|improve this answer
How to find out iTunesMetadata.plist? – sandy Jan 12 '10 at 8:04
[NSHomeDirectory() stringByAppendingPathComponent:@"iTunesMetadata.plist"] – KennyTM Jan 12 '10 at 8:33
shall i need to add that file ? i am not getting any thing. id data = [NSHomeDirectory() stringByAppendingPathComponent:@"iTunesMetadata.plist"]; NSLog(@"data ::: %@",[[NSFileManager defaultManager] contentsOfDirectoryAtPath:data error:nil]); NSLog(@"att :: %@",[[NSFileManager defaultManager] attributesOfItemAtPath:data error:nil]); This code give me null. Can u give some detail about this . thanks – sandy Jan 12 '10 at 9:04
This file won't exist until the customer download it from AppStore. – KennyTM Jan 12 '10 at 9:45
feedback

Your Answer

 
or
required, but never shown

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