mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 19:57:04 +05:30
24 lines
592 B
Kotlin
24 lines
592 B
Kotlin
/*
|
|
* Copyright © 2021-2024 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.
|
|
*/
|
|
import dev.msfjarvis.claw.gradle.addTestDependencies
|
|
|
|
plugins {
|
|
id("dev.msfjarvis.claw.android-library")
|
|
id("dev.msfjarvis.claw.kotlin-android")
|
|
alias(libs.plugins.anvil)
|
|
alias(libs.plugins.whetstone)
|
|
}
|
|
|
|
android { namespace = "dev.msfjarvis.claw.data.store" }
|
|
|
|
anvil { generateDaggerFactories.set(true) }
|
|
|
|
dependencies {
|
|
implementation(libs.store)
|
|
|
|
addTestDependencies(project)
|
|
}
|