From 25ce9bdbf886048192a7d202b20f5cccbd8e81bb Mon Sep 17 00:00:00 2001 From: androidacy-user Date: Thu, 15 Jun 2023 21:39:18 -0400 Subject: [PATCH] update deps Signed-off-by: androidacy-user --- app/build.gradle.kts | 22 ++++++++++++++++------ build.gradle.kts | 2 +- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e007fe6..ec6a8f1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -15,6 +15,7 @@ plugins { id("com.mikepenz.aboutlibraries.plugin") kotlin("android") kotlin("kapt") + id("com.google.devtools.ksp") version "1.8.22-1.0.11" id("io.sentry.android.gradle") } @@ -479,12 +480,12 @@ dependencies { implementation("com.github.Fox2Code:AndroidANSI:1.2.1") // sentry - implementation("io.sentry:sentry-android:6.22.0") - implementation("io.sentry:sentry-android-timber:6.22.0") - implementation("io.sentry:sentry-android-fragment:6.22.0") - implementation("io.sentry:sentry-android-okhttp:6.22.0") - implementation("io.sentry:sentry-kotlin-extensions:6.22.0") - implementation("io.sentry:sentry-android-ndk:6.22.0") + implementation("io.sentry:sentry-android:6.23.0") + implementation("io.sentry:sentry-android-timber:6.23.0") + implementation("io.sentry:sentry-android-fragment:6.23.0") + implementation("io.sentry:sentry-android-okhttp:6.23.0") + implementation("io.sentry:sentry-kotlin-extensions:6.23.0") + implementation("io.sentry:sentry-android-ndk:6.23.0") // Markdown // TODO: switch to an updated implementation @@ -525,6 +526,15 @@ dependencies { // yes implementation("com.github.fingerprintjs:fingerprint-android:2.0.0") + + // room + implementation("androidx.room:room-runtime:2.5.1") + + // To use Kotlin Symbol Processing (KSP) + ksp("androidx.room:room-compiler:2.5.1") + + // optional - Kotlin Extensions and Coroutines support for Room + implementation("androidx.room:room-ktx:2.5.1") } android { diff --git a/build.gradle.kts b/build.gradle.kts index 0184b9f..57d36b2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -19,7 +19,7 @@ buildscript { } dependencies { classpath("com.android.tools.build:gradle:8.0.2") - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22") classpath("com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:10.6.2") // NOTE: Do not place your application dependencies here; they belong