Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am new to android programming and database. I have very little experience with database. I am trying to make users login from different phones. I think I read that SQLite will not be suitable for this. Basically, I want the user's data to synch with different phones.
I want to know what type of database I could use. Thanks!
You need use a database in the cloud, a server, not in Android.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm new here and junior programmer.
I would create a database for an application that I am creating and I would like to know which recommends android applications.
Thank you!!
Saving data to a database is ideal for repeating or structured data, such as contact information. This class assumes that you are familiar with SQL databases in general and helps you get started with SQLite databases on Android. The APIs you'll need to use a database on Android are available in the android.database.sqlite package.
This is the official documentation.
see this also
http://www.vogella.com/tutorials/AndroidSQLite/article.html
try SQLite
Android has builtin support.
Sample here
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have a problem and I need to identify all the instances of a particular object in an image(clould be from a stored image or from camera). I want to do this on windows, ios and android. Which is the best library/sdk or cloud based service that could help me out.
I tried few options like Vuphoria but it doesn't matches same object in one go across bigger image.
Any help will be appreciated
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to build a vocabulary app for android and i need word list file which contains words along with their synonyms,antonyms and their use. I just want to know whether is there any source to get such word list, because i am finding it hard to populate my database.
You may want to find a web thesaurus service that offers access to its API such as Big Huge Thesaurus. You can get information from this site to populate a local database for offline usage.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm developing android client which is capable of upload system db contacts information (name, phone_number, email).
Could someone suggest the best technology in point of best performance (in client) with about 1000 contacts.
SOAP or REST, XML or JSON.
I would go for a REST service, as it is more lightweight as SOAP. Also, you don't need a stateful service for this. Next to that I would use JSON, for two reason. Almost always smaller than xml, and great Android support for parsers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm working on an Android application that records video which then gets uploaded and stored on a server but I don't have idea where can I save this files. There are any solution like Heroku, Appfog or OpenShift, where I can store a large amount of files?
How about s3, or rackspace cloud files, or any other cloud storage solution.