mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 12:17:02 +05:30
![renovate[bot]](/assets/img/avatar_default.png)
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.jetbrains.kotlin.plugin.serialization](https://kotlinlang.org/) ([source](https://togithub.com/JetBrains/kotlin)) | `2.0.10` -> `2.0.20` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [org.jetbrains.kotlin.plugin.compose](https://kotlinlang.org/) ([source](https://togithub.com/JetBrains/kotlin)) | `2.0.10` -> `2.0.20` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [org.jetbrains.kotlin:kotlin-gradle-plugin](https://kotlinlang.org/) ([source](https://togithub.com/JetBrains/kotlin)) | `2.0.10` -> `2.0.20` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>JetBrains/kotlin (org.jetbrains.kotlin.plugin.serialization)</summary> ### [`v2.0.20`](https://togithub.com/JetBrains/kotlin/compare/v2.0.10...v2.0.20) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/msfjarvis/compose-lobsters). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
63 lines
1.9 KiB
Kotlin
63 lines
1.9 KiB
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.
|
|
*/
|
|
@file:Suppress("UnstableApiUsage")
|
|
|
|
import com.android.build.api.variant.HasUnitTestBuilder
|
|
|
|
plugins {
|
|
id("dev.msfjarvis.claw.android-library")
|
|
id("dev.msfjarvis.claw.kotlin-android")
|
|
alias(libs.plugins.anvil)
|
|
alias(libs.plugins.whetstone)
|
|
alias(libs.plugins.kotlin.composeCompiler)
|
|
}
|
|
|
|
android {
|
|
buildFeatures {
|
|
androidResources = true
|
|
compose = true
|
|
}
|
|
composeOptions { useLiveLiterals = false }
|
|
namespace = "dev.msfjarvis.claw.common"
|
|
}
|
|
|
|
androidComponents { beforeVariants { (it as HasUnitTestBuilder).enableUnitTest = false } }
|
|
|
|
anvil { generateDaggerFactories.set(true) }
|
|
|
|
dependencies {
|
|
api(libs.androidx.compose.ui)
|
|
api(libs.dagger)
|
|
api(libs.javax.inject)
|
|
api(projects.core)
|
|
api(projects.database.core)
|
|
api(projects.model)
|
|
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
implementation(libs.androidx.browser)
|
|
implementation(libs.androidx.compose.animation)
|
|
implementation(libs.androidx.compose.foundation)
|
|
implementation(libs.androidx.compose.material.icons.extended)
|
|
implementation(libs.androidx.compose.material3)
|
|
implementation(libs.androidx.compose.runtime)
|
|
implementation(libs.androidx.compose.ui.text)
|
|
implementation(libs.androidx.core)
|
|
implementation(libs.coil)
|
|
implementation(libs.coil.compose)
|
|
implementation(libs.compose.richtext.markdown)
|
|
implementation(libs.compose.richtext.material3)
|
|
implementation(libs.compose.richtext.ui)
|
|
implementation(libs.kotlinx.collections.immutable)
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
implementation(libs.kotlinResult)
|
|
implementation(libs.kotlinResult.coroutines)
|
|
implementation(libs.napier)
|
|
|
|
compileOnly(libs.androidx.compose.ui.tooling.preview)
|
|
|
|
runtimeOnly(libs.androidx.compose.ui.tooling)
|
|
}
|