how to get android firmware version installed in phone?
while developing an application how to get current operating system开发者_Python百科 version installed in mobile phone?
for example,
1.5,2.1 etc..
can any one guide me how to get it?
any help would be appriciated.
See android.os.Build.VERSION. SDK or SDK in contain the API version. android.os.Build.VERSION_CODES contains the relevant constants.
String deviceSoftwareVersion = telephonyManager.getDeviceSoftwareVersion();
精彩评论