Skip to main content
Inspiring
January 11, 2012
Answered

What's the Adobe Air equivalent of iOS CoreData?

  • January 11, 2012
  • 2 replies
  • 1019 views

I've used CoreData a lot on iOS and love it.  Can someone tell me what the Adobe Air mobile equivalent of CoreData is?

I've been using EncryptedLocalStore for storing user Preferences, but this uses the iOS keychain, and causes data to persist on the iOS device through an app delete & install.  That's no good, since I'm storing a little more preferences than is appropriate for using the keychain.  AND I want the app data deleted off the device after the app is deleted/uninstalled.

Any ideas? 

This topic has been closed for replies.
Correct answer

My Opinion:

Local Shared Objects if you want to have your prefs as key/value pairs. or using E4X along with File APIs to readObject and writeObject if you are looking to have your prefs in XML format.

2 replies

Correct answer
January 12, 2012

My Opinion:

Local Shared Objects if you want to have your prefs as key/value pairs. or using E4X along with File APIs to readObject and writeObject if you are looking to have your prefs in XML format.

Inspiring
January 12, 2012