What is the syntax for using the Log class?
What are the levels of severity?
Log.i(“TAG - usually class name”, “error message”)
verbose debug info warning error wtf (what a terrible failure - an error that should never happen
ASSERT is another constant of the Log class, although there is no Log.a
In what ways is using the Timber library superior to using the Log class?
Timber will:
What are the steps to implement Timber? (2)
Add Timber dependency in build.gradle(Module)
‘com.jakewharton.timber:timber:4.7.1’
Override the Application class (extend and add to Manifest)
In ApplicationClass.onCreate( ), after the super, add:
Timber.plant(Timber.DebugTree( ))
What does adb stand for?
Android Debug Bridge
Which Codelab Task explains how to implement a Countdown Timer?
Codelab 5.4, task 4