|
|
|
@ -24,13 +24,11 @@ To see how it could be achieved see the [multiplatform template](https://github.
|
|
|
|
|
## Versioning |
|
|
|
|
|
|
|
|
|
Compose Multiplatform `1.0.0` references Jetpack Compose `1.1.0-beta02`. If one wants to use a different version, they could explicitly |
|
|
|
|
override Jetpack Compose dependencies to the Android module like this: |
|
|
|
|
override Jetpack Compose dependencies to the Android module (or to the androidMain sourceset in MPP module) like this: |
|
|
|
|
|
|
|
|
|
```kotlin |
|
|
|
|
configurations.all { |
|
|
|
|
resolutionStrategy { |
|
|
|
|
force("androidx.compose.animation:animation:1.1.0-beta03") |
|
|
|
|
} |
|
|
|
|
dependencies { |
|
|
|
|
implementation("androidx.compose.material:material:1.1.0-beta04") |
|
|
|
|
} |
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|