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" 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 }