From 853bcc955f74b151c09bade17caae0967ab0b48d Mon Sep 17 00:00:00 2001 From: lunaticbum <> Date: Fri, 23 Aug 2024 16:03:43 +0900 Subject: [PATCH] ... --- app/build.gradle.kts | 4 +++- .../main/kotlin/rasel/lunar/launcher/home/LauncherHome.kt | 2 +- build.gradle.kts | 5 +++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 602c5dce..86a0f39d 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -3,6 +3,7 @@ import org.jetbrains.kotlin.fir.scopes.debugCollectOverrides plugins { id ("com.android.application") id ("kotlin-android") + id ("io.realm.kotlin") } android { @@ -86,5 +87,6 @@ dependencies { implementation ("com.squareup.picasso:picasso:2.71828") implementation ("androidx.work:work-runtime:2.9.1") implementation ("com.google.code.gson:gson:2.11.0") - + implementation ("io.realm.kotlin:library-base:2.1.0") + } diff --git a/app/src/main/kotlin/rasel/lunar/launcher/home/LauncherHome.kt b/app/src/main/kotlin/rasel/lunar/launcher/home/LauncherHome.kt index 1edd7fc8..1b4aa5cc 100644 --- a/app/src/main/kotlin/rasel/lunar/launcher/home/LauncherHome.kt +++ b/app/src/main/kotlin/rasel/lunar/launcher/home/LauncherHome.kt @@ -435,7 +435,7 @@ internal class LauncherHome : Fragment() { } } } else { -// binding.notes.adapter = TodoAdapter(null, requireContext()) + //binding.notes.adapter = TodoAdapter(null, requireContext()) } } diff --git a/build.gradle.kts b/build.gradle.kts index e96e5e93..8f1c7493 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,8 +9,9 @@ buildscript { } plugins { - id ("com.android.application") version "8.2.1" apply false - id ("com.android.library") version "8.2.1" apply false + id ("io.realm.kotlin") version "1.16.0" apply false + id ("com.android.application") version "8.2.2" apply false + id ("com.android.library") version "8.2.2" apply false } tasks.register("clean") {