Skip to content

Commit eaaef32

Browse files
author
maskara
committed
Fix dex merge issue
1 parent bdcd2ac commit eaaef32

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

app/build.gradle

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ dependencies {
2323
}
2424

2525

26-
implementation "com.android.support:support-v4:${project.supportLibVersion}"
27-
implementation "com.android.support:appcompat-v7:${project.supportLibVersion}"
28-
implementation "com.android.support:design:${project.supportLibVersion}"
26+
implementation "com.android.support:support-v4:$SUPPORT_LIB_VERSION"
27+
implementation "com.android.support:appcompat-v7:$SUPPORT_LIB_VERSION"
28+
implementation "com.android.support:design:$SUPPORT_LIB_VERSION"
2929

30-
implementation "com.android.support:cardview-v7:${project.supportLibVersion}"
30+
implementation "com.android.support:cardview-v7:$SUPPORT_LIB_VERSION"
3131

3232
implementation "com.jakewharton:butterknife:$BUTTERKNIFE_VERSION"
3333
kapt "com.jakewharton:butterknife-compiler:$BUTTERKNIFE_VERSION"
@@ -44,7 +44,7 @@ dependencies {
4444
implementation 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.0.0'
4545
implementation 'com.jakewharton.rxbinding2:rxbinding-design:2.0.0'
4646

47-
implementation 'com.facebook.fresco:fresco:1.3.0'
47+
implementation 'com.facebook.fresco:fresco:1.5.0'
4848
implementation 'com.facebook.stetho:stetho:1.5.0'
4949

5050
implementation "com.google.dagger:dagger:$DAGGER_VERSION"
@@ -62,17 +62,17 @@ dependencies {
6262

6363
testImplementation 'com.squareup.okhttp3:mockwebserver:3.8.1'
6464
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:3.8.1'
65-
androidTestImplementation "com.android.support:support-annotations:${project.supportLibVersion}"
65+
androidTestImplementation "com.android.support:support-annotations:$SUPPORT_LIB_VERSION"
6666
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
6767

68-
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5.1'
69-
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
70-
testImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
68+
debugImplementation "com.squareup.leakcanary:leakcanary-android:$LEAK_CANARY"
69+
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$LEAK_CANARY"
70+
testImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$LEAK_CANARY"
7171

72-
implementation 'com.google.dagger:dagger:2.11'
73-
implementation 'com.google.dagger:dagger-android-support:2.11'
74-
annotationProcessor 'com.google.dagger:dagger-compiler:2.11'
75-
annotationProcessor 'com.google.dagger:dagger-android-processor:2.11'
72+
implementation "com.google.dagger:dagger:$DAGGER_VERSION"
73+
implementation "com.google.dagger:dagger-android-support:$DAGGER_VERSION"
74+
kapt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
75+
kapt "com.google.dagger:dagger-android-processor:$DAGGER_VERSION"
7676
}
7777

7878
android {

gradle.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
gradleVersion = 3.0.0
22

3-
supportLibVersion = 26.1.0
3+
SUPPORT_LIB_VERSION = 26.0.2
44

55
compileSdkVersion = android-26
66
buildToolsVersion = 26.0.2
@@ -12,7 +12,8 @@ android.useDeprecatedNdk=true
1212

1313
# Library dependencies
1414
BUTTERKNIFE_VERSION=8.6.0
15-
DAGGER_VERSION=2.11
15+
DAGGER_VERSION=2.13
16+
LEAK_CANARY=1.5.4
1617

1718
org.gradle.jvmargs=-Xmx1536M
1819

0 commit comments

Comments
 (0)