Louis CAD
Louis CAD
The dev version `3.0.0-dev-111` is being verified before publication. You can follow the process here: https://github.com/LouisCAD/Splitties/actions/runs/562701850 I'll release a new beta soon after, should be this weekend.
The dev version `3.0.0-dev-111` is now available on the dev repository.
Yes, because you need to remove the compiler flag I mentioned if you're using the latest dev version. It was only a workaround if you stayed on versions before. PS:...
I'm reopening it because I still need to publish a new non dev release for 1.4.30+
Totally agree, and I'm using both myself as well now. Feel free to send a PR if you want it corrected fast 🙂
That's the first Android version I'd have tried to use it on 😅 Could you start by adding the try catch blocks so it becomes no-op instead of crashing? That'd...
I just submitted a new public API request on Android's issue tracker: https://issuetracker.google.com/issues/129999621
I thought I already had such extensions, when I saw you mentioning nullability, but I was wrong. I think the reason I did not add it yet is because font...
Blocked by https://github.com/GradleUp/auto-manifest/issues/2
Example of home grown technique: ```kotlin private val someDb by lazy { roomDb("something") } suspend fun someDb() = withContext(ioDispatcher) { someDb } ``` With such a function: ```kotlin suspend operator...