Skip to content

Instantly share code, notes, and snippets.

@Astroa7m
Created March 3, 2022 01:09
Show Gist options
  • Save Astroa7m/ad026748f8abf093c1e75b8e64119e81 to your computer and use it in GitHub Desktop.
Save Astroa7m/ad026748f8abf093c1e75b8e64119e81 to your computer and use it in GitHub Desktop.
inline fun<T> is29AndAbove(
func: () -> T
) :T?{
return if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q)
func.invoke()
else
null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment