Browse Source

Add "Known issues and solutions" to CHANGELOG.md (1.6.0-rc01) (#4304)

pull/4314/head
Igor Demin 3 months ago committed by GitHub
parent
commit
609560ba32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 19
      CHANGELOG.md

19
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

Loading…
Cancel
Save