aboutsummaryrefslogtreecommitdiff
path: root/about/build.gradle
blob: 3ee1a48d17626f03c51a48177a37b0d44d939dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
apply from: '../android-lib.gradle'

android {
    defaultConfig {
        resValue "string", "kau_version_code", project.VERSION_NAME
    }
}

dependencies {
    compile project(':core-ui')
    compile project(':adapter')

    compile("com.mikepenz:aboutlibraries:${ABOUT_LIBRARIES}@aar") {
        transitive = false
    }
}

apply from: '../artifacts.gradle'