How can I check the system version of Android? -
does know how can check system version (e.g. 1.0
, 2.2
, etc.) programatically?
check android.os.build.version
.
codename
: current development codename, or string "rel" if release build.incremental
: internal value used underlying source control represent build.release
: user-visible version string.
Comments
Post a Comment