Skip to content

Commit 73021e0

Browse files
committed
TLIB.07-Exercise-AddTimber
1 parent 2c88924 commit 73021e0

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
}

app/src/main/java/com/example/android/emojify/Emojifier.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
class 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;

app/src/main/java/com/example/android/emojify/MainActivity.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
/**

0 commit comments

Comments
 (0)