Skip to content

Commit

Permalink
Fix NoSuchMethod error
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechOsak committed Jun 1, 2024
1 parent 91a993d commit 986cb1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ Each view get as parameter day cell composable. Thanks to that your calendar can
| 1.5.11 | 0.0.8-compose-1.5.11 |
| 1.6.1 | 0.0.9 |
| 1.6.10 | 1.0.0 |
| 1.6.10 | 1.0.1 |

---

Expand Down
2 changes: 1 addition & 1 deletion calendar/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.11"
kotlinCompilerExtensionVersion = libs.versions.compose.asProvider().get()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class MenuScreen : Screen {
item { ScreenButton(AnimationScreen(), "Animations") }
item { ScreenButton(RangeSelectionScreen(), "Range selection") }
item { ScreenButton(FullDateScreen(), "Full date selector (day/month/year)") }
item { Text("Lib version: 0.0.9") }
item { Text("Lib version: 1.0.1") }
}
}

Expand Down

0 comments on commit 986cb1e

Please sign in to comment.