h bob
h bob

Reputation: 3780

Can I use Azure offline sync API with Azure Storage Emulator?

I am trying to get Azure offline sync for mobile apps working. I'd like to use that API with the "Azure Storage Emulator".

Do these two things work together? There is no mention of whether this is the case.

Upvotes: 1

Views: 87

Answers (1)

David Makogon
David Makogon

Reputation: 71130

Offline data sync cannot use the storage emulator - you need to think of the storage emulator simply as a test endpoint for Azure Storage. Offline sync works with SQLite and Core Data.

Also remember that the Azure storage emulator runs specifically on a Windows development machine; you cannot install it on an Android / iOS / Windows Phone device.

Upvotes: 2

Related Questions