Skip to content

Commit

Permalink
chore(deps): update dependencies (minor/patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Aug 9, 2024
1 parent 4abce61 commit 0b469ac
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 34 deletions.
36 changes: 18 additions & 18 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("com.google.devtools.ksp") version "1.9.23-1.0.20"
id("com.google.devtools.ksp") version "1.9.25-1.0.20"
id("androidx.navigation.safeargs.kotlin")
kotlin("plugin.serialization") version "1.9.23"
kotlin("plugin.serialization") version "1.9.25"
id("org.jmailen.kotlinter")
id("io.gitlab.arturbosch.detekt")
}
Expand Down Expand Up @@ -119,9 +119,9 @@ android {
}

dependencies {
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.11.0")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.navigation:navigation-fragment-ktx:2.7.7")?.version?.also {
implementation("androidx.navigation:navigation-ui-ktx:$it")
Expand All @@ -132,17 +132,17 @@ dependencies {
implementation("com.android.support:support-annotations:28.0.0")
val room = implementation("androidx.room:room-ktx:2.6.1")
ksp("androidx.room:room-compiler:${room?.version}")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0")?.also {
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4")?.also {
implementation("androidx.lifecycle:lifecycle-livedata-ktx:${it.version}")
}
implementation("androidx.activity:activity-ktx:1.8.2")
implementation("androidx.fragment:fragment-ktx:1.6.2")
implementation("androidx.work:work-runtime-ktx:2.9.0")?.version?.also {
implementation("androidx.activity:activity-ktx:1.9.1")
implementation("androidx.fragment:fragment-ktx:1.8.2")
implementation("androidx.work:work-runtime-ktx:2.9.1")?.version?.also {
androidTestImplementation("androidx.work:work-testing:$it")
}

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")?.version?.also {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1")?.version?.also {
implementation("org.jetbrains.kotlinx:kotlinx-serialization-cbor:$it")
}

Expand All @@ -157,18 +157,18 @@ dependencies {
}

testImplementation("junit:junit:4.13.2")
testImplementation("io.kotest:kotest-runner-junit5:5.8.1")?.version?.also {
testImplementation("io.kotest:kotest-runner-junit5:5.9.1")?.version?.also {
testImplementation("io.kotest:kotest-assertions-core:$it")?.also { dep ->
androidTestImplementation(dep)
}
testImplementation("io.kotest:kotest-property:$it")
}
testImplementation("org.mockito.kotlin:mockito-kotlin:5.3.1")
testImplementation("org.robolectric:robolectric:4.12.1")
androidTestImplementation("androidx.test.ext:junit-ktx:1.1.5")
androidTestImplementation("androidx.test:rules:1.5.0")
androidTestImplementation("androidx.test:runner:1.5.2")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")?.version?.also {
testImplementation("org.mockito.kotlin:mockito-kotlin:5.4.0")
testImplementation("org.robolectric:robolectric:4.13")
androidTestImplementation("androidx.test.ext:junit-ktx:1.2.1")
androidTestImplementation("androidx.test:rules:1.6.1")
androidTestImplementation("androidx.test:runner:1.6.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")?.version?.also {
implementation("androidx.test.espresso:espresso-idling-resource:$it")
androidTestImplementation("androidx.test.espresso:espresso-contrib:$it")
}
Expand Down
26 changes: 13 additions & 13 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,24 @@ buildscript {
configurations.classpath {
resolutionStrategy {
force(
"com.pinterest.ktlint:ktlint-rule-engine:1.2.1",
"com.pinterest.ktlint:ktlint-rule-engine-core:1.2.1",
"com.pinterest.ktlint:ktlint-cli-reporter-core:1.2.1",
"com.pinterest.ktlint:ktlint-cli-reporter-checkstyle:1.2.1",
"com.pinterest.ktlint:ktlint-cli-reporter-json:1.2.1",
"com.pinterest.ktlint:ktlint-cli-reporter-html:1.2.1",
"com.pinterest.ktlint:ktlint-cli-reporter-plain:1.2.1",
"com.pinterest.ktlint:ktlint-cli-reporter-sarif:1.2.1",
"com.pinterest.ktlint:ktlint-ruleset-standard:1.2.1"
"com.pinterest.ktlint:ktlint-rule-engine:1.3.1",
"com.pinterest.ktlint:ktlint-rule-engine-core:1.3.1",
"com.pinterest.ktlint:ktlint-cli-reporter-core:1.3.1",
"com.pinterest.ktlint:ktlint-cli-reporter-checkstyle:1.3.1",
"com.pinterest.ktlint:ktlint-cli-reporter-json:1.3.1",
"com.pinterest.ktlint:ktlint-cli-reporter-html:1.3.1",
"com.pinterest.ktlint:ktlint-cli-reporter-plain:1.3.1",
"com.pinterest.ktlint:ktlint-cli-reporter-sarif:1.3.1",
"com.pinterest.ktlint:ktlint-ruleset-standard:1.3.1"
)
}
}
}
plugins {
id("com.android.application") version "8.3.2" apply false
id("com.android.library") version "8.3.2" apply false
id("org.jetbrains.kotlin.android") version "1.9.23" apply false
id("org.jmailen.kotlinter") version "4.3.0" apply false
id("com.android.application") version "8.5.2" apply false
id("com.android.library") version "8.5.2" apply false
id("org.jetbrains.kotlin.android") version "1.9.25" apply false
id("org.jmailen.kotlinter") version "4.4.1" apply false
id("io.gitlab.arturbosch.detekt") version "1.23.6" apply false
// Related: https://github.com/NeoTech-Software/Android-Root-Coverage-Plugin?tab=readme-ov-file#4-compatibility
id("nl.neotech.plugin.rootcoverage") version "1.8.0"
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
7 changes: 5 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

##############################################################################
#
Expand Down Expand Up @@ -55,7 +57,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down Expand Up @@ -84,7 +86,8 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 2 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem

@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
Expand Down

0 comments on commit 0b469ac

Please sign in to comment.