Skip to content

Commit 25ce9bd

Browse files
update deps
Signed-off-by: androidacy-user <opensource@androidacy.com>
1 parent 636eec7 commit 25ce9bd

2 files changed

Lines changed: 17 additions & 7 deletions

File tree

app/build.gradle.kts

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ plugins {
1515
id("com.mikepenz.aboutlibraries.plugin")
1616
kotlin("android")
1717
kotlin("kapt")
18+
id("com.google.devtools.ksp") version "1.8.22-1.0.11"
1819
id("io.sentry.android.gradle")
1920
}
2021

@@ -479,12 +480,12 @@ dependencies {
479480
implementation("com.github.Fox2Code:AndroidANSI:1.2.1")
480481

481482
// sentry
482-
implementation("io.sentry:sentry-android:6.22.0")
483-
implementation("io.sentry:sentry-android-timber:6.22.0")
484-
implementation("io.sentry:sentry-android-fragment:6.22.0")
485-
implementation("io.sentry:sentry-android-okhttp:6.22.0")
486-
implementation("io.sentry:sentry-kotlin-extensions:6.22.0")
487-
implementation("io.sentry:sentry-android-ndk:6.22.0")
483+
implementation("io.sentry:sentry-android:6.23.0")
484+
implementation("io.sentry:sentry-android-timber:6.23.0")
485+
implementation("io.sentry:sentry-android-fragment:6.23.0")
486+
implementation("io.sentry:sentry-android-okhttp:6.23.0")
487+
implementation("io.sentry:sentry-kotlin-extensions:6.23.0")
488+
implementation("io.sentry:sentry-android-ndk:6.23.0")
488489

489490
// Markdown
490491
// TODO: switch to an updated implementation
@@ -525,6 +526,15 @@ dependencies {
525526

526527
// yes
527528
implementation("com.github.fingerprintjs:fingerprint-android:2.0.0")
529+
530+
// room
531+
implementation("androidx.room:room-runtime:2.5.1")
532+
533+
// To use Kotlin Symbol Processing (KSP)
534+
ksp("androidx.room:room-compiler:2.5.1")
535+
536+
// optional - Kotlin Extensions and Coroutines support for Room
537+
implementation("androidx.room:room-ktx:2.5.1")
528538
}
529539

530540
android {

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
}
2020
dependencies {
2121
classpath("com.android.tools.build:gradle:8.0.2")
22-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21")
22+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22")
2323
classpath("com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:10.6.2")
2424

2525
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)