aboutsummaryrefslogtreecommitdiff
path: root/about/build.gradle
blob: 47941788ddc9080a5c042112537a86a7841bd38f (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 {
    implementation project(':core-ui')
    implementation project(':adapter')

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

apply from: '../artifacts.gradle'