Skip to content
Snippets Groups Projects
build.gradle.kts 918 B
Newer Older
kr328's avatar
kr328 committed
plugins {
    kotlin("android")
    kotlin("kapt")
    id("com.android.application")
kr328's avatar
kr328 committed
}

dependencies {
    compileOnly(project(":hideapi"))

    implementation(project(":core"))
    implementation(project(":service"))
    implementation(project(":design"))
    implementation(project(":common"))
    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)
kr328's avatar
kr328 committed

    val premiumImplementation by configurations
    premiumImplementation(deps.appcenter.analytics)
    premiumImplementation(deps.appcenter.crashes)
kr328's avatar
kr328 committed
}

tasks.getByName("clean", type = Delete::class) {
kr328's avatar
kr328 committed
    delete(file("release"))
}