如何在android中获取设备的基带版本?
我正在收集该设备的硬件详细信息。我从 os.Build 获得了许多硬件信息,唯一我没有得到的是基带版本。请帮我找到它。
先感谢您
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
过去,您可以使用
Build.RADIO
静态字段来获取基带(又名无线电)版本,但自 SDK Lvl 14 以来该版本已被弃用。从 SDK Lvl 14 开始,您应该使用
Build.getRadioVersion()
来检索基带版本。来源: http://developer.android.com/reference/android/os/Build .html
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