Skip to content

Instantly share code, notes, and snippets.

@fbcbl
Created January 2, 2020 13:44
Show Gist options
  • Save fbcbl/dc03d86472195d72b9ceceb8534834c0 to your computer and use it in GitHub Desktop.
Save fbcbl/dc03d86472195d72b9ceceb8534834c0 to your computer and use it in GitHub Desktop.
Android Lint - Dog Example
import android.util.Log
class Dog {
fun bark() {
Log.d(TAG, "woof! woof!")
}
companion object {
private const val TAG = "Sample"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment