Skip to content

Commit

Permalink
Update Compose BOM 2024.02.00 and compiler 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
p-lr committed Feb 8, 2024
1 parent 31df9df commit 4235d0c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Maven Central](https://img.shields.io/maven-central/v/ovh.plrapps/mapcompose)](https://mvnrepository.com/artifact/ovh.plrapps/mapcompose)
[![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
[![](https://img.shields.io/badge/ComposeBOM-2023.10.01-brightgreen)](https://developer.android.com/jetpack/compose/bom/bom)
[![](https://img.shields.io/badge/ComposeBOM-2024.02.00-brightgreen)](https://developer.android.com/jetpack/compose/bom/bom)

🎉 News:
- New path dash pattern api: ability to define a sequence made of dash, dot, and gap.
Expand Down Expand Up @@ -71,7 +71,7 @@ There's an example in the demo app.

Add this to your module's build.gradle
```groovy
implementation 'ovh.plrapps:mapcompose:2.11.1'
implementation 'ovh.plrapps:mapcompose:2.12.0'
```

Starting with v.2.4.1, the library is using the
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = "1.9.21"
kotlin_version = "1.9.22"
coroutine_version = '1.7.3'
compose_compiler_version = '1.5.7'
compose_compiler_version = '1.5.8'
}
repositories {
google()
Expand Down
4 changes: 2 additions & 2 deletions demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'

// Compose - See https://developer.android.com/jetpack/compose/setup#bom-version-mapping
implementation platform('androidx.compose:compose-bom:2023.10.01')
implementation platform('androidx.compose:compose-bom:2024.02.00')
implementation "androidx.compose.ui:ui"
implementation "androidx.compose.material:material"
implementation "androidx.compose.ui:ui-tooling-preview"
debugImplementation "androidx.compose.ui:ui-tooling"

implementation 'androidx.navigation:navigation-compose:2.7.6'
implementation 'androidx.navigation:navigation-compose:2.7.7'
implementation 'androidx.activity:activity-compose:1.8.2'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
Expand Down
2 changes: 1 addition & 1 deletion mapcompose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ android {

dependencies {
// Compose - See https://developer.android.com/jetpack/compose/setup#bom-version-mapping
api platform('androidx.compose:compose-bom:2023.10.01')
api platform('androidx.compose:compose-bom:2024.02.00')
api "androidx.compose.foundation:foundation"
implementation "androidx.compose.ui:ui-tooling-preview"
debugImplementation "androidx.compose.ui:ui-tooling"
Expand Down
2 changes: 1 addition & 1 deletion mapcompose/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=ovh.plrapps
VERSION_NAME=2.11.1
VERSION_NAME=2.12.0
ARTIFACT_ID=mapcompose

POM_NAME=MapCompose
Expand Down
4 changes: 2 additions & 2 deletions testapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'

// Compose - See https://developer.android.com/jetpack/compose/setup#bom-version-mapping
implementation platform('androidx.compose:compose-bom:2023.10.01')
implementation platform('androidx.compose:compose-bom:2024.02.00')
implementation "androidx.compose.ui:ui"
implementation "androidx.compose.material:material"
implementation "androidx.compose.ui:ui-tooling-preview"
debugImplementation "androidx.compose.ui:ui-tooling"

implementation 'androidx.navigation:navigation-compose:2.7.6'
implementation 'androidx.navigation:navigation-compose:2.7.7'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
implementation 'androidx.activity:activity-compose:1.8.2'
implementation project(':mapcompose')
Expand Down

0 comments on commit 4235d0c

Please sign in to comment.