Update compose to 2023.08.00

This commit is contained in:
Oleksandr Balan
2023-09-06 22:37:10 +02:00
parent 9addca8f27
commit 23a394897a
35 changed files with 431 additions and 332 deletions

View File

@@ -15,8 +15,8 @@ This library allows to create an effect of turning pages, which can be used in b
### Get a dependency
**Step 1.** Add the MavenCentral repository to your build file.
Add it in your root `build.gradle` at the end of repositories:
```
Add it in your root `build.gradle.kts` at the end of repositories:
```kotlin
allprojects {
repositories {
...
@@ -25,8 +25,8 @@ allprojects {
}
```
Or in `settings.gradle`:
```
Or in `settings.gradle.kts`:
```kotlin
pluginManagement {
repositories {
...
@@ -37,9 +37,9 @@ pluginManagement {
**Step 2.** Add the dependency.
Check latest version on the [releases page](https://github.com/oleksandrbalan/pagecurl/releases).
```
```kotlin
dependencies {
implementation 'io.github.oleksandrbalan:pagecurl:$version'
implementation("io.github.oleksandrbalan:pagecurl:$version")
}
```