Tell me more ×
Android Enthusiasts Stack Exchange is a question and answer site for enthusiasts and power users of the Android operating system. It's 100% free, no registration required.

There have been some Jelly Bean updates for Galaxy Nexus, but most of these are specific to a certain variant of the Nexus. How can I easily find out which variant I have?

share|improve this question

2 Answers

up vote 3 down vote accepted

There used to be an app that did just this, but it's been pulled for some reason. You could also download a "system info" type app, but these often come with ads and other bloatware.

The easiest way is to download a terminal app such as Android Terminal Emulator, open it and run the command getprop ro.product.name and you'll get the variant.

Here's an example what the run looks like:

u0_a109@android:/ $ export PATH=/data/local/bin:$PATH
u0_a109@android:/ $ getprop ro.product.name
takju
u0_a109@android:/ $

... and there you have it, takju!

Another way would be to open adb shell and running getprop ro.product.name from there. This is more useful if you already have ADB installed. Otherwise, it's faster to just download the app.

share|improve this answer

How about Settings (scroll down to bottom) About?

share|improve this answer
2  
It doesn't show the variant, only the build number, kernel version, Android version and baseband version. – onik Jul 20 '12 at 18:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.