mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 19:57:04 +05:30
22 lines
569 B
Kotlin
22 lines
569 B
Kotlin
/*
|
|
* Copyright © 2022 Harsh Shandilya.
|
|
* Use of this source code is governed by an MIT-style
|
|
* license that can be found in the LICENSE file or at
|
|
* https://opensource.org/licenses/MIT.
|
|
*/
|
|
@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
|
|
|
|
plugins {
|
|
kotlin("android")
|
|
id("dev.msfjarvis.claw.kotlin-common")
|
|
id("dev.msfjarvis.claw.android-library")
|
|
alias(libs.plugins.anvil)
|
|
}
|
|
|
|
android { namespace = "dev.msfjarvis.claw.core" }
|
|
|
|
dependencies {
|
|
implementation(projects.diScopes)
|
|
implementation(libs.dagger)
|
|
implementation(libs.javax.inject)
|
|
}
|