Brian
Brian
Even in the latest antlr, the Javascript visitor is doing something weird. For every other target (I'm using Swift and Java targets as well), visit() always receives a ParseTree. But...
For me, the instructions in the README are working for a debug build, but not in webpack release build. In the release build only, no time zones can be found....
Yeah, well Jetbrains just announced [Kotlin/JS Compose for Web](https://blog.jetbrains.com/kotlin/2021/05/technology-preview-jetpack-compose-for-web/), so they are putting the work in to support multiplatform. I'm hoping to see Jetbrains start an iOS port too, because...
Looks like as of May 28th this is technically possible: https://twitter.com/shikasd_/status/1398445030419877891?s=20 Though, there are no prebuilt artifacts published for native (yet?)
I'm also seeing `UnsatisfiedLinkError` issues for Android P users in the wild. But
I think you are in the right track, the UI thread is a view layer detail and doesn't belong anywhere except in the UI layer, in my opinion.
Yes, when I write my business logic and entities, I avoid all dependencies on 3rd party frameworks (Android, RxJava, etc.). This is actually a core tenant of clean architecture, It's...
@Hinaka There are lots of good approaches with different pros/cons. Let's assume we like the overall asynchronous architecture and *just* want to abstract RxJava and threading knowledge out of the...
Another approach is to make your use-cases single-threaded, which makes them even cleaner, and then only the executor needs to care about threading / listeners / etc.. ```java interface UseCase...
In a "pure clean architecture project", the 3rd party implementations would not matter, they would be hidden behind an interface. So sure, use those classes if they are helpful, but...