Skip to content

Instantly share code, notes, and snippets.

@oleggreen
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save oleggreen/3346eca75d26b9f468ec to your computer and use it in GitHub Desktop.

Select an option

Save oleggreen/3346eca75d26b9f468ec to your computer and use it in GitHub Desktop.
Android Support Annotations

Support Annotations

link to source (android tools project site)

dependencies {
    compile 'com.android.support:support-annotations:22.2.0'
}
  • @Nullable and @NonNull

  • @StringRes, @DrawableRes, @ColorRes, @InterpolatorRes, and so on + @AnyRes

  • @IntDef/StringDef

  • @UiThread, @MainThread, @WorkerThread, @BinderThread

  • @ColorInt

  • @Size, @IntRange, @FloatRange

  • @RequiresPermission

  • @CheckResult

  • @Keep

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment