Skip to content

Instantly share code, notes, and snippets.

@aldakur
Last active June 13, 2016 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aldakur/6deffa3108cec80980cb8b80de478b2d to your computer and use it in GitHub Desktop.
Save aldakur/6deffa3108cec80980cb8b80de478b2d to your computer and use it in GitHub Desktop.
Check android version in a condition
// Check the condition as
if (android.os.Build.VERSION.SDK_INT>=11){
//Do something
}
// This is better
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){
//Do something
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment