Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Device Database

Tags:

android

I am wondering if there are any android device databases around.

One of the apps I am working on now allows users to install an app on their devices. Once installed the application registers with a server. The device becomes tied to the user account at a website. In the website I would like to display an icon for each of the devices the user has associated with his account.

Ideally the icon would depict the actual device they have. An android device database would ideally allow me to get this picture (as it stands even trying to figure out if the device is a phone or a tablet is tricky and mostly guess work (look at screen res etc...). I have googled around and have not found anything.

Ideally the device database would expose a rest API which I could query to get information about my device (including icons etc).

I am thinking of building such a service as well as an app that could be used to extract device info and upload it to the device database (the website would allow users to tie images to devices).

I thought I should double check that it does not already exist.

like image 438
haninaguib Avatar asked May 02 '11 17:05

haninaguib


People also ask

What database is used in Android?

SQLite is a opensource SQL database that stores data to a text file on a device. Android comes in with built in SQLite database implementation.

What is the best Android database?

PostgreSQL. A unique relational database, PostgreSQL is the best database for Android and iOS apps. Developers can customize this database as they want; that's why it's the most preferred mobile app database.

What is mean by database in Android?

SQLite Database is an open-source database provided in Android which is used to store data inside the user's device in the form of a Text file. We can perform so many operations on this data such as adding new data, updating, reading, and deleting this data.


1 Answers

Google has a list of Android devices on their previous Nexus One website here. The list is however pretty incomplete, and depending on your location certain phones might be hidden (you can change that with the drop-down box though). The list however is quite detailed, and includes a lot specification data about each device too.

Of course this does not replace some web service or a central database, but I think it is the closest you can get as of now. And if you plan to make a database yourself, it is probably a very good ressource to get information from.

like image 116
poke Avatar answered Oct 03 '22 23:10

poke