blob: 7578ce0aa6eb6ab3a677a9ff8b44ccf5dba405af (
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", androidGitVersion.name()
}
}
dependencies {
implementation project(':core-ui')
implementation project(':adapter')
api("com.mikepenz:aboutlibraries:${kau.Versions.aboutLibraries}@aar") {
transitive = false
}
}
apply from: '../artifacts.gradle'
|