Reputation: 21
I am currently developing a Dropbox-like mac application. The application is syncing files in a folder placed in "~/" on my mac. I'd like to add badges showing sync status on the files managed by my application.
In order to do so, I have read the doc from apple : https://developer.apple.com/library/ios/documentation/General/Conceptual/ExtensibilityPG/Finder.html .
What I know so far :
My Question now is:
Is there a way that my app can have badges + store files anywhere on the disk (not only in sandbox allowed directories) + pass app store validation?
Upvotes: 2
Views: 439
Reputation: 43
I asked Apple about this subject after having my app rejected but sadly your application has to be sanboxed in order to pass the validation.
Apps like Dropbox and Owncloud aren't validated for this reason.
You'll have to make a choice between validation, having the badges and having your files stored anywhere. You definitely can't have both.
Upvotes: 1