File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
src/main/java/com/example/android/emojify Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -29,5 +29,6 @@ dependencies {
29
29
compile ' com.google.android.gms:play-services-vision:10.2.0'
30
30
compile ' com.jakewharton:butterknife:8.4.0'
31
31
annotationProcessor ' com.jakewharton:butterknife-compiler:8.4.0'
32
+ // TODO (1): Add Timber dependency
32
33
testCompile ' junit:junit:4.12'
33
34
}
Original file line number Diff line number Diff line change 30
30
31
31
class Emojifier {
32
32
33
+ // TODO (3): Change all Log statements to Timber logs and remove the LOG_TAG variable
33
34
private static final String LOG_TAG = Emojifier .class .getSimpleName ();
34
35
35
36
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) {
72
72
73
73
// Bind the views
74
74
ButterKnife .bind (this );
75
+
76
+ // TODO (2): Set up Timber
75
77
}
76
78
77
79
/**
You can’t perform that action at this time.
0 commit comments