Browse Source

Update README.md

web_remove_warning_in_tutorials
Igor Demin 3 years ago committed by GitHub
parent
commit
46d8c51d27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      tutorials/Development_for_Android/README.md

8
tutorials/Development_for_Android/README.md

@ -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")
}
```

Loading…
Cancel
Save