Michael Pardo
Michael Pardo
>if you had a large project using it and it would be a big effort to migrate away from it, would you do so, and if so, why? In this...
I found some samples hidden here: https://github.com/AlecStrong/kotlin-native-cocoapods/tree/master/gradle-plugin/src/test
I would suggest matching the maven group ID you want to use as you will also need to own the domain to publish with Sonatype. e.g. https://github.com/getanvil/, https://getanvil.com, `com.getanvil:anvil:`.
Is this project still active? I, too, would like to use Anvil with `ConstraintLayout` and the latest versions of other support libraries.
Proposal to transfer to organization: https://github.com/zserge/anvil/issues/130
Yes, I agree that we need better documentation, recipes, and examples. You're right on track with using `disposableEffect` for subscriptions that you want to cancel, though. For reference, here's an...
Thanks for the PR. I think we should hold off on this decision until we've migrated to the new [update/view API}(https://github.com/oolong-kt/oolong/pull/133) since it will create conflicting duplicate types.
I think a good first step while we consider alternatives, is to deprecate `Next` in favor of `Pair`. This is more in line with Elm using tuples and removes the...
Testing `init`, `update`, and `view` is as simple as calling those functions and asserting on the result. There's nothing to help with effect testing in the library yet, however, it...
Follow up: I would recommend using `TestCoroutineDispatcher` so you can advance time like this https://github.com/oolong-kt/oolong/blob/main/oolong/src/jvmTest/kotlin/oolong/effect/EffectTest.kt#L48