When I add
{:live_view_native, "~> 0.4.0-rc.1"},
{:live_view_native_stylesheet, "~> 0.4.0-rc.1"},
{:live_view_native_swiftui, "~> 0.4.0-rc.1"},
{:live_view_native_live_form, "~> 0.4.0-rc.1"}
it fails
Dependencies have diverged:
* live_view_native (Hex package)
the dependency live_view_native in mix.exs is overriding a child dependency:
> In mix.exs:
{:live_view_native, "~> 0.4.0-rc.1", [env: :prod, hex: "live_view_native", repo: "hexpm"]}
> In deps/live_view_native_jetpack/mix.exs:
{:live_view_native, [env: :prod, git: "https://github.com/liveview-native/live_view_native.git", branch: "main", override: true]}
Ensure they match or specify one of the above in your deps and set "override: true"
** (Mix) Can't continue due to errors on dependencies
tried with earlier version it did work either.
May I have some advice?
Thank you
When I add
it fails
tried with earlier version it did work either.
May I have some advice?
Thank you