aboutsummaryrefslogtreecommitdiff
path: root/about/build.gradle
blob: af87f1ead9ace0a97d7b3a7627f14680e8b72544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
plugins {
    id 'com.gladed.androidgitversion' version '0.4.3'
}
apply from: '../android-lib.gradle'

android {
    defaultConfig {
        resValue "string", "kau_version_code", androidGitVersion.name()
    }
}

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

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

apply from: '../artifacts.gradle'