diff --git a/apple/examples/ios_app.ml b/apple/examples/ios_app.ml index f94dcac..d582eb9 100644 --- a/apple/examples/ios_app.ml +++ b/apple/examples/ios_app.ml @@ -5,7 +5,7 @@ let mounted_apps = ref [] let window = ref None let install_root_window _app_delegate _application _launch_options = - let app = App.create Xxx.Ios_demo_app.component in + let app = App.create Bonsai_apple_examples.Ios_demo_app.component in App.flush_and_render app; let root = match App.view app with diff --git a/apple/examples/mac_app.ml b/apple/examples/mac_app.ml index d02f894..e25e68a 100644 --- a/apple/examples/mac_app.ml +++ b/apple/examples/mac_app.ml @@ -5,7 +5,7 @@ let mounted_apps = ref [] let window = ref None let install_root_window _app_delegate _application _launch_options = - let app = App.create Xxx.Ios_demo_app.component in + let app = App.create Bonsai_apple_examples.Ios_demo_app.component in App.flush_and_render app; let root = match App.view app with diff --git a/dune-project b/dune-project index 6999118..6da2287 100644 --- a/dune-project +++ b/dune-project @@ -28,6 +28,6 @@ (description "A SwiftUI-like declarative native Apple UI framework for OCaml.") (depends - (ocaml (and (>= 5.1.0) (< 5.3.0))) + (ocaml (>= 5.1.0)) dune bonsai_native))