summaryrefslogtreecommitdiff
path: root/ui/statistics/build.gradle
blob: 49ec1df8bbad45918eafd7da9a2c963a86381913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
plugins {
    id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"

android {
    lintOptions {
        disable "InvalidPeriodicWorkRequestInterval", "MissingPermission", "GradleCompatible",
                "QueryPermissionsNeeded", "Overdraw", "SetTextI18n", "RtlHardcoded"
    }
}

dependencies {
    implementation project(":core")
    implementation project(":model")
    implementation project(":ui:common")

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
    implementation "androidx.appcompat:appcompat:$appcompatVersion"
    implementation "androidx.core:core:$coreVersion"
    implementation "androidx.fragment:fragment:$fragmentVersion"
    implementation "androidx.recyclerview:recyclerview:$recyclerViewVersion"
    implementation "androidx.viewpager2:viewpager2:$viewPager2Version"
    implementation "com.google.android.material:material:$googleMaterialVersion"

    implementation "com.github.bumptech.glide:glide:$glideVersion"
    annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
    implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
    implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
}