From f715eb58ea749896d7f5cb29e2c82f299c208594 Mon Sep 17 00:00:00 2001 From: Ivan Matkov Date: Fri, 19 Apr 2024 00:14:12 +0200 Subject: [PATCH] Add a note about known issue with Java 11 compatibility (#4650) --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8d72574f0..afd7d32dc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ _Changes since 1.6.2_ ## Known issues - [**⚠️ Crash at startup on pre-iOS 17 devices due to loading `UITextLoupeSession`**](https://github.com/JetBrains/compose-multiplatform/issues/4644) +- `lifecycle-runtime` breaks Compose UI compatibility with Java 11 on desktop, it requires Java 17 or above now. - `inline fun viewModel(...)` is not available from common due to [compiler bug](https://github.com/JetBrains/compose-multiplatform/issues/3147). Please use `fun viewModel(KClass, ...)` overload instead - Compose Multiplatform doesn't provide default `ViewModelStoreOwner` yet. For using `ViewModel`s outside of `NavHost` you need to provide custom store owner via `LocalViewModelStoreOwner`