2021-05-14 19:51:08 +03:00
|
|
|
plugins {
|
|
|
|
kotlin("android")
|
|
|
|
kotlin("kapt")
|
2021-09-11 09:53:09 +03:00
|
|
|
id("com.android.application")
|
2021-05-14 19:51:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-11 09:53:09 +03:00
|
|
|
implementation(project(":core"))
|
|
|
|
implementation(project(":service"))
|
|
|
|
implementation(project(":design"))
|
|
|
|
implementation(project(":common"))
|
2021-05-16 13:15:36 +03:00
|
|
|
|
2021-09-11 09:53:09 +03:00
|
|
|
implementation(kotlin("stdlib-jdk7"))
|
|
|
|
implementation(deps.kotlin.coroutine)
|
|
|
|
implementation(deps.androidx.core)
|
|
|
|
implementation(deps.androidx.activity)
|
|
|
|
implementation(deps.androidx.fragment)
|
|
|
|
implementation(deps.androidx.appcompat)
|
|
|
|
implementation(deps.androidx.coordinator)
|
|
|
|
implementation(deps.androidx.recyclerview)
|
|
|
|
implementation(deps.google.material)
|
2021-05-14 19:51:08 +03:00
|
|
|
|
2021-09-11 09:53:09 +03:00
|
|
|
val premiumImplementation by configurations
|
2021-05-16 13:15:36 +03:00
|
|
|
|
2021-09-11 09:53:09 +03:00
|
|
|
premiumImplementation(deps.appcenter.analytics)
|
|
|
|
premiumImplementation(deps.appcenter.crashes)
|
2021-05-14 19:51:08 +03:00
|
|
|
}
|
|
|
|
|
2021-09-11 09:53:09 +03:00
|
|
|
tasks.getByName("clean", type = Delete::class) {
|
2021-05-14 19:51:08 +03:00
|
|
|
delete(file("release"))
|
|
|
|
}
|