I have an existing OSX app that supports OSX 10.5 onwards. I want to publish it to the AppStore and therefore I need to sandbox the app. I guess sandbox app should be supporing 10.7 onwards.
- The app uses a folder in the username directory to create temp files etc
- It also copies a sql db file which already has empty tables to the same temp folder and upates records as the app is used.
- Furthermore if there is a crash it picks up logs from the crashlog folder of osx and requests user to submit them to developer.
Question
with a sanbox app, where do I store temp files ? Where should I place the db file which can be read/witten to + new App update should be able to find exsting db file. Should the custom code for crash reporter be kept or be made redundant ?
Thanks