mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-29 05:17:43 +00:00
20 lines
463 B
Plaintext
20 lines
463 B
Plaintext
|
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)
|
||
|
}
|