Arnau Mora
Arnau Mora
Requires KSP to be updated. See releases at: https://github.com/google/ksp/releases (https://github.com/google/ksp/issues/1876)
Compose Compiler (https://developer.android.com/jetpack/androidx/releases/compose-compiler) must also be updated Update: [Compose Compiler 1.5.14](https://developer.android.com/jetpack/androidx/releases/compose-compiler#1.5.14) has been released
I'm doing a full rewrite of the library, since it was quite unmanageable to fix bugs and add new features, though it will take some time, since I'm currently doing...
The issue here is that we are working with `AnnotatedString`, I don't see how we could create a table only with characters. Maybe with some ASCII magic... But we should...
I have now released MarkdownText 1.2.3, it fixes temporally the issue by rendering the table as raw Markdown. Once I finish exams I will work on a proper implementation of...
+1 for this
If you want a some kind of "declarative" approach, more similar to Flutter, but for Android native, you can use [Glance](https://developer.android.com/jetpack/compose/glance) for Jetpack Compose. I believe it's still in beta,...
I've created this test: ```kotlin class WordpressEventsManagerTest { @Test fun test_parsing() { val calendar = CalendarBuilder().build( StringReader( "BEGIN:VCALENDAR\n" + "VERSION:2.0\n" + "BEGIN:VEVENT\n" + "UID:[email protected]\n" + "DTSTART;TZID=Europe/Berlin:20230905T200000\n" + "DTEND;TZID=Europe/Berlin:20230905T210000\n" + "SUMMARY:xxxxxxxxxxxxxxxxxxx\n"...
Well, I used fine because debug is not actually a debug level. See [`Level`](https://docs.oracle.com/javase/7/docs/api/java/util/logging/Level.html). The levels are: - `SEVERE` (highest value) - `WARNING` - `INFO` - `CONFIG` - `FINE` -...
> The debug level Ricki meant was most likely `INFO`, but I can see the confusion with the word "info" :D Aaaaah I get it, I'll change it now 😉