Skip to content

Commit

Permalink
chore: update compose libs to get rid of rendering crashes [WPB-9666] (
Browse files Browse the repository at this point in the history
  • Loading branch information
saleniuk authored Jul 3, 2024
1 parent 2dae724 commit 466cd99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/src/main/kotlin/com/wire/android/ui/WireActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class WireActivity : AppCompatActivity() {
}
}

override fun onNewIntent(intent: Intent?) {
override fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
setIntent(intent)
if (isNavigationCollecting) {
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ androidx-startup = "1.1.1"
androidx-compose-runtime = "1.6.7"

# Compose
composeBom = "2024.05.00"
compose-foundation = "1.7.0-beta02" # remove when composeBom contains new stable version of BasicTextField2
compose-material-android = "1.7.0-beta02" # remove when composeBom contains new stable version of BasicTextField2
compose-activity = "1.8.2"
composeBom = "2024.06.00"
compose-foundation = "1.7.0-beta04" # remove when composeBom contains new stable version of BasicTextField2
compose-material-android = "1.7.0-beta04" # remove when composeBom contains new stable version of BasicTextField2
compose-activity = "1.9.0"
compose-compiler = "1.5.11"
compose-constraint = "1.0.1"
compose-navigation = "2.7.7" # adjusted to work with compose-destinations "1.9.54"
Expand Down

0 comments on commit 466cd99

Please sign in to comment.