blob: 29f77c066f9f66444b7eaa96498325cfe3fbd33c (
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.aboutLibraries}@aar") {
transitive = false
}
}
apply from: '../artifacts.gradle'
|