diff --git a/CHANGELOG.md b/CHANGELOG.md index 5917f3355a..7176faeb04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # 1.6.0-rc01 (February 2024) +## Known issues and solutions +### Could not find "org.jetbrains.compose.annotation-internal:annotation" +_(or org.jetbrains.compose.collection-internal:collection)_, _[link](https://github.com/JetBrains/compose-multiplatform/issues/4277)_ + +It happens because some library depends on `1.6.0-beta02` which isn't binary compatible with `1.6.0-rc01`. +To find this library, call `./gradlew shared:dependencies` (replace `shared` by your main module). Downgrade this library or ask the library author to upgrade it to `1.6.0-rc01`. + +### Could not find androidx.annotation:annotation:... +_(or org.jetbrains.compose.collection-internal:collection)_ + +It happens, because `1.6.0` depends on [collection](https://developer.android.com/jetpack/androidx/releases/collection) and [annnotation](https://developer.android.com/jetpack/androidx/releases/annotation) libraries that are available only in the Google Maven repository. + +To solve this, add `google()` maven repository to `build.gradle.kts`: +``` +repositories { + ... + google() +} +``` _Changes since 1.6.0-beta02_ ## iOS/desktop/web