mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
Remove duplicates from gradle file
This commit is contained in:
parent
92b2e91e1e
commit
238d96afe7
1 changed files with 10 additions and 23 deletions
|
|
@ -39,29 +39,10 @@ dependencies {
|
||||||
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
||||||
// Because RxAndroid releases are few and far between, it is recommended you also
|
// Because RxAndroid releases are few and far between, it is recommended you also
|
||||||
// explicitly depend on RxJava's latest version for bug fixes and new features.
|
// explicitly depend on RxJava's latest version for bug fixes and new features.
|
||||||
compile 'io.reactivex.rxjava2:rxjava:2.1.2'
|
implementation 'com.android.support:multidex:1.0.3'
|
||||||
compile 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
|
|
||||||
compile 'com.jakewharton.rxbinding2:rxbinding-support-v4:2.0.0'
|
|
||||||
compile 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.0.0'
|
|
||||||
compile 'com.jakewharton.rxbinding2:rxbinding-design:2.0.0'
|
|
||||||
|
|
||||||
compile 'com.facebook.fresco:fresco:1.3.0'
|
testImplementation "org.robolectric:multidex:3.4.2"
|
||||||
compile 'com.facebook.stetho:stetho:1.5.0'
|
|
||||||
|
|
||||||
compile 'com.android.support:multidex:1.0.3'
|
|
||||||
|
|
||||||
testCompile 'junit:junit:4.12'
|
|
||||||
testCompile 'org.robolectric:robolectric:3.7.1'
|
|
||||||
testCompile "org.robolectric:multidex:3.4.2"
|
|
||||||
|
|
||||||
testCompile 'com.squareup.okhttp3:mockwebserver:3.8.1'
|
|
||||||
androidTestCompile 'com.squareup.okhttp3:mockwebserver:3.8.1'
|
|
||||||
androidTestCompile "com.android.support:support-annotations:${project.SUPPORT_LIB_VERSION}"
|
|
||||||
androidTestCompile 'com.android.support.test.espresso:espresso-core:3.0.1'
|
|
||||||
|
|
||||||
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.1'
|
|
||||||
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
|
|
||||||
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
|
|
||||||
implementation 'io.reactivex.rxjava2:rxjava:2.1.2'
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.2'
|
||||||
implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
|
||||||
implementation 'com.jakewharton.rxbinding2:rxbinding-support-v4:2.0.0'
|
implementation 'com.jakewharton.rxbinding2:rxbinding-support-v4:2.0.0'
|
||||||
|
|
@ -98,8 +79,8 @@ dependencies {
|
||||||
kapt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
|
kapt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
|
||||||
kapt "com.google.dagger:dagger-android-processor:$DAGGER_VERSION"
|
kapt "com.google.dagger:dagger-android-processor:$DAGGER_VERSION"
|
||||||
|
|
||||||
compile 'com.borjabravo:readmoretextview:2.1.0'
|
implementation 'com.borjabravo:readmoretextview:2.1.0'
|
||||||
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
|
@ -122,6 +103,12 @@ android {
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
testOptions {
|
||||||
|
unitTests.all {
|
||||||
|
jvmArgs '-noverify'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
// use kotlin only in tests (for now)
|
// use kotlin only in tests (for now)
|
||||||
test.java.srcDirs += 'src/test/kotlin'
|
test.java.srcDirs += 'src/test/kotlin'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue