mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 01:27:18 +02:00
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev> Co-authored-by: Fabian Henneke <fabian@henneke.me>
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)
|
|
}
|