Conversation with a remote CouchDB server with Android

I am developing a turn-based game similar to words with friends. I do not need data that must be constantly stored on the phone in local CouchDB.

I tried to execute HTTP requests using HttpPut/ HttpGetand HttpClientwithout success.

What is the best way to communicate with CouchDB from an Android app? What alternative databases are available?

+3
source share
1 answer

I would recommend TouchDB-Android . We used TouchDB-iOS for our iOS apps and plan to use TouchDB-Android when we start Android development. TouchDB has an active developer community - see this google group . You can use TouchDB to connect to a local or remote CouchdB database and to replicate between them.

0
source

All Articles