Vani
Vani

Reputation: 139

How to get baseband version of the device in android?

i am collecting hardware details of the device. i have got many hardware info's from os.Build only thing i am not getting is baseband version. Please help me to find it.

Thank you in advance

Upvotes: 3

Views: 13349

Answers (1)

Lev G.
Lev G.

Reputation: 353

In the past you could use the Build.RADIO static field in order to get the baseband (a.k.a Radio) version which is however depraceted since SDK Lvl 14.

Since SDK Lvl 14 you should use Build.getRadioVersion() in order to retrieve the baseband version.

Source: http://developer.android.com/reference/android/os/Build.html

Upvotes: 6

Related Questions