mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-06 04:51:38 +02:00
20 lines
463 B
Text
20 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)
|
||
|
}
|