0810273444
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev> Co-authored-by: Fabian Henneke <fabian@henneke.me>
19 lines
463 B
Text
19 lines
463 B
Text
plugins {
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(Dependencies.AndroidX.core_ktx)
|
|
implementation(Dependencies.AndroidX.autofill)
|
|
implementation(Dependencies.Kotlin.Coroutines.android)
|
|
implementation(Dependencies.Kotlin.Coroutines.core)
|
|
implementation(Dependencies.ThirdParty.timberkt)
|
|
}
|