@@ -39,29 +39,10 @@ dependencies {
3939 implementation ' io.reactivex.rxjava2:rxandroid:2.0.1'
4040 // Because RxAndroid releases are few and far between, it is recommended you also
4141 // explicitly depend on RxJava's latest version for bug fixes and new features.
42- compile ' io.reactivex.rxjava2:rxjava:2.1.2'
43- compile ' com.jakewharton.rxbinding2:rxbinding:2.0.0'
44- compile ' com.jakewharton.rxbinding2:rxbinding-support-v4:2.0.0'
45- compile ' com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.0.0'
46- compile ' com.jakewharton.rxbinding2:rxbinding-design:2.0.0'
42+ implementation ' com.android.support:multidex:1.0.3'
4743
48- compile ' com.facebook.fresco:fresco:1.3.0'
49- compile ' com.facebook.stetho:stetho:1.5.0'
44+ testImplementation " org.robolectric:multidex:3.4.2"
5045
51- compile ' com.android.support:multidex:1.0.3'
52-
53- testCompile ' junit:junit:4.12'
54- testCompile ' org.robolectric:robolectric:3.7.1'
55- testCompile " org.robolectric:multidex:3.4.2"
56-
57- testCompile ' com.squareup.okhttp3:mockwebserver:3.8.1'
58- androidTestCompile ' com.squareup.okhttp3:mockwebserver:3.8.1'
59- androidTestCompile " com.android.support:support-annotations:${ project.SUPPORT_LIB_VERSION} "
60- androidTestCompile ' com.android.support.test.espresso:espresso-core:3.0.1'
61-
62- debugCompile ' com.squareup.leakcanary:leakcanary-android:1.5.1'
63- releaseCompile ' com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
64- testCompile ' com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
6546 implementation ' io.reactivex.rxjava2:rxjava:2.1.2'
6647 implementation ' com.jakewharton.rxbinding2:rxbinding:2.0.0'
6748 implementation ' com.jakewharton.rxbinding2:rxbinding-support-v4:2.0.0'
@@ -98,8 +79,8 @@ dependencies {
9879 kapt " com.google.dagger:dagger-compiler:$DAGGER_VERSION "
9980 kapt " com.google.dagger:dagger-android-processor:$DAGGER_VERSION "
10081
101- compile ' com.borjabravo:readmoretextview:2.1.0'
102- compile ' com.android.support.constraint:constraint-layout:1.0.2'
82+ implementation ' com.borjabravo:readmoretextview:2.1.0'
83+ implementation ' com.android.support.constraint:constraint-layout:1.0.2'
10384}
10485
10586android {
@@ -122,6 +103,12 @@ android {
122103 multiDexEnabled true
123104 }
124105
106+ testOptions {
107+ unitTests. all {
108+ jvmArgs ' -noverify'
109+ }
110+ }
111+
125112 sourceSets {
126113 // use kotlin only in tests (for now)
127114 test. java. srcDirs + = ' src/test/kotlin'
0 commit comments