Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
Fix Emoji rendering on Android 11 and below
Browse files Browse the repository at this point in the history
See #165
  • Loading branch information
nightkr committed Apr 29, 2024
1 parent 837e563 commit a988883
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -99,22 +99,26 @@ android {

dependencies {

implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.core:core-ktx:1.13.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
implementation("androidx.activity:activity-compose:1.8.2")
implementation(platform("androidx.compose:compose-bom:2024.02.00"))
implementation("androidx.activity:activity-compose:1.9.0")
implementation(platform("androidx.compose:compose-bom:2024.04.01"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material3:material3")
// Should be included transitively, but doesn't actually seem to render emojis
// without a direct dependency.
// Emojis still not rendering properly? Try gradle clean and then rebuilding.
implementation("androidx.emoji2:emoji2:1.4.0")
implementation("androidx.emoji2:emoji2-emojipicker:1.4.0")
implementation("androidx.emoji2:emoji2-bundled:1.4.0")
implementation("androidx.navigation:navigation-compose:2.7.7")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.2.0")
androidTestImplementation(platform("androidx.compose:compose-bom:2024.02.00"))
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0")
androidTestImplementation(platform("androidx.compose:compose-bom:2024.04.01"))
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
androidTestImplementation("tools.fastlane:screengrab:2.1.1")
debugImplementation("androidx.compose.ui:ui-tooling")
Expand Down

0 comments on commit a988883

Please sign in to comment.