From 4e1ddfb4f75f89bdc63071ccde8438707b7c2a56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=20G=2E=20=F0=9F=8C=8F?= <1451036+jo-elimu@users.noreply.github.com> Date: Sun, 29 Jun 2025 15:35:02 +0700 Subject: [PATCH 1/2] chore(deps): appstore 2.5.62 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0e4f312b..e45de5b5 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -elimuAppstore = "2.5.59" +elimuAppstore = "2.5.62" commonsIo = "2.19.0" agp = "8.6.1" material = "1.12.0" From cf8464af445b7dfc2346a9f815ecf8c7d701880e Mon Sep 17 00:00:00 2001 From: "Jo G." <1451036+jo-elimu@users.noreply.github.com> Date: Sun, 29 Jun 2025 18:51:02 +0700 Subject: [PATCH 2/2] chore(deps): model-2.0.116 Remove deprecated LearningEventType https://github.com/elimu-ai/model/releases/tag/model-2.0.116 --- .../converter/CursorToWordLearningEventGsonConverter.kt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/utils/src/main/java/ai/elimu/content_provider/utils/converter/CursorToWordLearningEventGsonConverter.kt b/utils/src/main/java/ai/elimu/content_provider/utils/converter/CursorToWordLearningEventGsonConverter.kt index 81238a87..15bdc4ad 100644 --- a/utils/src/main/java/ai/elimu/content_provider/utils/converter/CursorToWordLearningEventGsonConverter.kt +++ b/utils/src/main/java/ai/elimu/content_provider/utils/converter/CursorToWordLearningEventGsonConverter.kt @@ -1,6 +1,5 @@ package ai.elimu.content_provider.utils.converter -import ai.elimu.model.v2.enums.analytics.LearningEventType import ai.elimu.model.v2.gson.analytics.WordLearningEventGson import android.database.Cursor import android.util.Log @@ -43,11 +42,6 @@ object CursorToWordLearningEventGsonConverter { val wordText = cursor.getString(columnWordText) Log.i(TAG, "wordText: \"$wordText\"") - val columnLearningEventType = cursor.getColumnIndex("learningEventType") - val learningEventTypeAsString = cursor.getString(columnLearningEventType) - val learningEventType = LearningEventType.valueOf(learningEventTypeAsString) - Log.i(TAG, "learningEventType: $learningEventType") - val wordLearningEventGson = WordLearningEventGson() wordLearningEventGson.id = id wordLearningEventGson.androidId = androidId @@ -55,7 +49,6 @@ object CursorToWordLearningEventGsonConverter { wordLearningEventGson.timestamp = time wordLearningEventGson.wordId = wordId wordLearningEventGson.wordText = wordText - wordLearningEventGson.learningEventType = learningEventType return wordLearningEventGson }