mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 02:57:04 +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>
125 lines
4.2 KiB
Kotlin
125 lines
4.2 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 dev.msfjarvis.claw.gradle.addTestDependencies
|
|
|
|
plugins {
|
|
id("dev.msfjarvis.claw.android-application")
|
|
id("dev.msfjarvis.claw.rename-artifacts")
|
|
id("dev.msfjarvis.claw.kotlin-android")
|
|
id("dev.msfjarvis.claw.kotlin-kapt")
|
|
id("dev.msfjarvis.claw.sentry")
|
|
id("dev.msfjarvis.claw.versioning-plugin")
|
|
alias(libs.plugins.aboutlibraries)
|
|
alias(libs.plugins.android.junit5)
|
|
alias(libs.plugins.anvil)
|
|
alias(libs.plugins.modulegraphassert)
|
|
alias(libs.plugins.whetstone)
|
|
alias(libs.plugins.baselineprofile)
|
|
alias(libs.plugins.licensee)
|
|
alias(libs.plugins.tracelog)
|
|
alias(libs.plugins.kotlin.composeCompiler)
|
|
alias(libs.plugins.kotlin.serialization)
|
|
alias(libs.plugins.navigation.safeargs)
|
|
}
|
|
|
|
android {
|
|
namespace = "dev.msfjarvis.claw.android"
|
|
defaultConfig.applicationId = "dev.msfjarvis.claw.android"
|
|
defaultConfig.testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
buildFeatures.compose = true
|
|
composeOptions { useLiveLiterals = false }
|
|
buildTypes.create("internal") {
|
|
matchingFallbacks += "release"
|
|
signingConfig = signingConfigs["debug"]
|
|
applicationIdSuffix = ".internal"
|
|
debuggable(true)
|
|
}
|
|
}
|
|
|
|
baselineProfile {
|
|
mergeIntoMain = true
|
|
saveInSrc = true
|
|
from(projects.benchmark.dependencyProject)
|
|
}
|
|
|
|
licensee {
|
|
allow("Apache-2.0")
|
|
allow("MIT")
|
|
ignoreDependencies("com.michael-bull.kotlin-result") { because("kotlin-result is ISC licensed") }
|
|
ignoreDependencies("org.commonmark") { because("Commonmark is BSD licensed") }
|
|
allowUrl("https://jsoup.org/license") { because("Jsoup is MIT licensed") }
|
|
allowUrl("https://opensource.org/licenses/MIT") { because("That's the MIT license text") }
|
|
}
|
|
|
|
moduleGraphAssert {
|
|
assertOnAnyBuild = true
|
|
maxHeight = 4
|
|
restricted = arrayOf(":core -X> :.*")
|
|
}
|
|
|
|
whetstone {
|
|
addOns {
|
|
compose.set(true)
|
|
workManager.set(true)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
implementation(platform(libs.okhttp.bom))
|
|
implementation(libs.aboutLibraries.m3)
|
|
implementation(libs.androidx.activity.compose)
|
|
implementation(libs.androidx.compose.animation)
|
|
implementation(libs.androidx.compose.foundation)
|
|
implementation(libs.androidx.compose.glance)
|
|
implementation(libs.androidx.compose.glance.m3)
|
|
implementation(libs.androidx.compose.material.icons.extended)
|
|
implementation(libs.androidx.compose.material3)
|
|
implementation(libs.androidx.compose.material3.window.size)
|
|
implementation(libs.androidx.compose.runtime)
|
|
implementation(libs.androidx.compose.ui)
|
|
implementation(libs.androidx.compose.ui.text)
|
|
implementation(libs.androidx.compose.ui.util)
|
|
implementation(libs.androidx.core.splashscreen)
|
|
implementation(libs.androidx.lifecycle.compose)
|
|
implementation(libs.androidx.navigation.compose)
|
|
implementation(libs.androidx.paging.compose)
|
|
implementation(libs.androidx.profileinstaller)
|
|
implementation(libs.androidx.work.runtime)
|
|
implementation(libs.copydown)
|
|
implementation(libs.dagger)
|
|
implementation(libs.eithernet)
|
|
implementation(libs.javax.inject)
|
|
implementation(libs.kotlinx.collections.immutable)
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
implementation(libs.kotlinx.serialization.core)
|
|
implementation(libs.kotlinx.serialization.json)
|
|
implementation(libs.material3.pulltorefresh)
|
|
implementation(libs.napier)
|
|
implementation(libs.okhttp.core)
|
|
implementation(libs.okhttp.loggingInterceptor)
|
|
implementation(libs.retrofit)
|
|
implementation(libs.sqldelight.extensions.coroutines)
|
|
implementation(libs.swipe)
|
|
implementation(libs.unfurl)
|
|
implementation(projects.api)
|
|
implementation(projects.common)
|
|
implementation(projects.core)
|
|
implementation(projects.database.core)
|
|
implementation(projects.database.impl)
|
|
implementation(projects.model)
|
|
implementation(projects.web)
|
|
|
|
kapt(libs.dagger.compiler)
|
|
|
|
addTestDependencies(project)
|
|
androidTestImplementation(libs.androidx.test.espresso.core)
|
|
androidTestImplementation(libs.androidx.test.uiautomator)
|
|
androidTestImplementation(libs.leakcanary.android.test)
|
|
}
|