File tree Expand file tree Collapse file tree
src/main/java/com/example/android/emojify Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,5 +29,6 @@ dependencies {
2929 compile ' com.google.android.gms:play-services-vision:10.2.0'
3030 compile ' com.jakewharton:butterknife:8.4.0'
3131 annotationProcessor ' com.jakewharton:butterknife-compiler:8.4.0'
32+ // TODO (1): Add Timber dependency
3233 testCompile ' junit:junit:4.12'
3334}
Original file line number Diff line number Diff line change 3030
3131class Emojifier {
3232
33+ // TODO (3): Change all Log statements to Timber logs and remove the LOG_TAG variable
3334 private static final String LOG_TAG = Emojifier .class .getSimpleName ();
3435
3536 private static final float EMOJI_SCALE_FACTOR = .9f ;
Original file line number Diff line number Diff line change @@ -72,6 +72,8 @@ protected void onCreate(Bundle savedInstanceState) {
7272
7373 // Bind the views
7474 ButterKnife .bind (this );
75+
76+ // TODO (2): Set up Timber
7577 }
7678
7779 /**
You can’t perform that action at this time.
0 commit comments