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") {