freeletics / FlowRedux

Kotlin Multiplatform Statemachine library with nice DSL based on Flow from Kotlin Coroutine's.

Home Page:https://freeletics.github.io/FlowRedux/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add targets for Apple Silicon

ychescale9 opened this issue · comments

commented

Kotlin 1.5.30 added native support for Apple Silicon.

To enable this in a KMP project (app) all transitive dependencies need to add those new targets.

Upcoming kotlinx.coroutines 1.5.2 will be adding these:

 addTarget(presets.iosSimulatorArm64)
 addTarget(presets.watchosSimulatorArm64)
 addTarget(presets.tvosSimulatorArm64)
 addTarget(presets.macosArm64)

It'd be great to add these targets to FlowRedux too.

Happy to send a PR once Coroutines 1.5.2 is out :)

sounds great, PR is very welcome!

(minor dependency to compose to support 1.5.30)