How can I check the system version of Android?
Does anyone know how can I check the system version (e.g. 1.0 , 2.2 , etc.) programatically? Robby Pond Check android.os.Build.VERSION . CODENAME : The current development codename, or the string "REL" if this is a release build. INCREMENTAL : The internal value used by the underlying source control to represent this build. RELEASE : The user-visible version string. Example how to use it: if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.GINGERBREAD) { // only for gingerbread and newer versions } Build.Version is the place go to for this data. Here is a code snippet for