This commit is contained in:
lunaticbum 2024-08-23 16:03:43 +09:00
parent ff14d6d3a5
commit 853bcc955f
3 changed files with 7 additions and 4 deletions

View File

@ -3,6 +3,7 @@ import org.jetbrains.kotlin.fir.scopes.debugCollectOverrides
plugins { plugins {
id ("com.android.application") id ("com.android.application")
id ("kotlin-android") id ("kotlin-android")
id ("io.realm.kotlin")
} }
android { android {
@ -86,5 +87,6 @@ dependencies {
implementation ("com.squareup.picasso:picasso:2.71828") implementation ("com.squareup.picasso:picasso:2.71828")
implementation ("androidx.work:work-runtime:2.9.1") implementation ("androidx.work:work-runtime:2.9.1")
implementation ("com.google.code.gson:gson:2.11.0") implementation ("com.google.code.gson:gson:2.11.0")
implementation ("io.realm.kotlin:library-base:2.1.0")
} }

View File

@ -435,7 +435,7 @@ internal class LauncherHome : Fragment() {
} }
} }
} else { } else {
// binding.notes.adapter = TodoAdapter(null, requireContext()) //binding.notes.adapter = TodoAdapter(null, requireContext())
} }
} }

View File

@ -9,8 +9,9 @@ buildscript {
} }
plugins { plugins {
id ("com.android.application") version "8.2.1" apply false id ("io.realm.kotlin") version "1.16.0" apply false
id ("com.android.library") version "8.2.1" apply false id ("com.android.application") version "8.2.2" apply false
id ("com.android.library") version "8.2.2" apply false
} }
tasks.register<Delete>("clean") { tasks.register<Delete>("clean") {