Skip to content

Instantly share code, notes, and snippets.

@ch8n
Last active March 30, 2019 06:46
Show Gist options
  • Save ch8n/a6b08e0c49ebf547fdda646ce2916383 to your computer and use it in GitHub Desktop.
Save ch8n/a6b08e0c49ebf547fdda646ce2916383 to your computer and use it in GitHub Desktop.
Safe todo for production and testing
fun SAFE_TODO(reason:String){
if (BuildConfig.DEBUG) {
TODO(reason)
}else{
Toast.makeText(context,"NOT_IMPLEMENYTED:$reason",Toast.LENGTH_SHORT).show()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment