Lorenz
Lorenz

Reputation: 2259

Get statistical informations about an Android device

I write an App and I'd like to get some informations about the Android devices my users are using.

I'd like to know

Is that possible without any special permissions? What is the API?

Upvotes: 2

Views: 69

Answers (2)

dharmendra
dharmendra

Reputation: 7881

I'd like to know the manufactor, the Android version and some kind of unique ID. Is that possible without any special permissions?

If you wrote 'permission' word in terms of manifest permission then you dont need any special permission for that , because its not something from user must be aware about application access of that data .

and if you would like to know about Build information then brianestey's answer is much clear to that .

Upvotes: 0

brianestey
brianestey

Reputation: 8302

Take a look at the Build object. It will give you some details about the Android build.

Information about the Android version can be found in Build.VERSION

Hope that helps.

Upvotes: 2

Related Questions