We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd963d1 + f189b3a commit 9e34300Copy full SHA for 9e34300
1 file changed
app/src/main/java/com/sameerasw/essentials/ui/ime/KaomojiData.kt
@@ -12,9 +12,11 @@ import androidx.compose.runtime.setValue
12
import androidx.compose.runtime.State
13
import kotlinx.coroutines.CoroutineScope
14
import kotlinx.coroutines.Dispatchers
15
+import androidx.annotation.Keep
16
import kotlinx.coroutines.launch
17
import kotlinx.coroutines.withContext
18
19
+@Keep
20
data class KaomojiObject(
21
@SerializedName("category") val category: String,
22
@SerializedName("value") val value: String
@@ -25,6 +27,7 @@ data class KaomojiCategory(
25
27
val kaomojis: List<KaomojiObject>
26
28
)
29
30
31
data class KaomojiDataResponse(
32
@SerializedName("kaomoji") val kaomoji: List<KaomojiObject>
33
0 commit comments