Skip to content

Commit

Permalink
removed pesky debug println and updated Lottie
Browse files Browse the repository at this point in the history
  • Loading branch information
SalomonBrys committed Jun 3, 2024
1 parent b0469b3 commit 97657e9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "org.kodein.emoji"
version = "2.0.0"
version = "2.0.1"
}

allprojects {
Expand Down
3 changes: 1 addition & 2 deletions compose-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,5 @@ android {
}

compose {
desktop.application.mainClass = "MainKt"
experimental.web.application {}
desktop.application.mainClass = "MainDesktopKt"
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ private fun WithNotoEmoji(
append(text.subSequence(start, found.start))
else
append(text.substring(start, found.start))
println(found.emoji)
val inlineContentID = "emoji:${found.emoji}"
inlineContent[inlineContentID] = InlineTextContent(Placeholder(found.emoji.ratio().em, 1.em, PlaceholderVerticalAlign.Center)) {
var display: (@Composable () -> Unit)? by remember { mutableStateOf(null) }
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
android-activityCompose = "1.9.0"
android-lottie = "6.3.0"
android-lottie = "6.4.0"
android-svg = "1.4"
compose = "1.6.10"

Expand Down

0 comments on commit 97657e9

Please sign in to comment.