Skip to content

Commit

Permalink
compose kmp updated to 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MFlisar committed Oct 20, 2024
1 parent 86fdaa1 commit 28848f1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,16 @@ This is a **full logging library** with a build in way to log to **console**, **

## :link: Dependencies

| Dependency | Version | Infos |
|:---------------------:|:-------:|:----------------------------------------------:|
| Compose Multiplatform | `1.7.0` | based on compose `1.7.1` and material3 `1.3.0` |

The timber version depends on [`Timber 4.7.1`](https://github.com/JakeWharton/timber), [`SLF4J 2.0.7`](https://www.slf4j.org/) and [`logback-android`](https://github.com/tony19/logback-android), the lumberjack version does not depend on any external library.

## :exclamation: Forward Compatibility

I try to use as few experimental APIs as possible, but the `composeviewer` module does use `ExposedDropdownMenuBox` and `TopAppBar` which are still marked as experimental in material3 `1.3.0`. I will provide new versions as soon as possible if experimental APIs change or become stable.

## :elephant: Gradle

This library is distributed via [maven central](https://central.sonatype.com/).
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[versions]

gradle = "8.5.2"
kotlin = "2.0.20"
compose = "1.6.11"
gradle = "8.6.1"
kotlin = "2.0.21"
compose = "1.7.0"
dokka = "1.9.20"
gradle-maven-publish-plugin = "0.29.0"

Expand All @@ -15,7 +15,7 @@ androidx-core = "1.13.1"
androidx-lifecycle = "2.8.6"
androidx-datastoreprefs = "1.1.1"
androidx-startup = "1.2.0"
androidx-activity = "1.9.2"
androidx-activity = "1.9.3"
androidx-recyclerview = "1.3.2"

# Dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import androidx.compose.foundation.lazy.LazyListScope
import androidx.compose.foundation.lazy.LazyListState
import androidx.compose.runtime.Composable
import androidx.compose.runtime.MutableState
import com.michaelflisar.lumberjack.core.interfaces.IFileLoggingSetup
import okio.Path

@Composable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import androidx.compose.ui.window.DialogWindow
import androidx.compose.ui.window.WindowPosition
import androidx.compose.ui.window.rememberDialogState
import okio.Path
import com.michaelflisar.lumberjack.core.interfaces.IFileLoggingSetup

@Composable
internal actual fun ShowLumberjackDialog(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ actual object Log {
log: String
) {
// TODO!!!!
...
// ...
}

}

0 comments on commit 28848f1

Please sign in to comment.