Created
January 2, 2020 13:44
-
-
Save fbcbl/dc03d86472195d72b9ceceb8534834c0 to your computer and use it in GitHub Desktop.
Android Lint - Dog Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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