aboutsummaryrefslogtreecommitdiff
path: root/adapter/build.gradle
blob: 7894627576fbe15a067116a708f38dd6da69a20a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
apply from: '../android.gradle'

android {
    resourcePrefix "kau_"
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    testCompile 'junit:junit:4.12'

    compile project(':core')

    compile "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}"
    testCompile "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"

    compile "com.mikepenz:fastadapter:${FAST_ADAPTER}@aar"
    compile "com.mikepenz:fastadapter-commons:${FAST_ADAPTER_COMMONS}@aar"
}

apply from: '../artifacts.gradle'