"Modify the following as needed" #1369
-
|
I'm following the setup guide, and I'm stuck here
Do I need to replace the contents of those files set up by the setup script, or should I keep the |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 16 replies
-
|
cc @GregoryConrad who PRed that helpful part of doc - shall we clarify a bit in the doc? |
Beta Was this translation helpful? Give feedback.
-
@tpict You were intended to modify the two variable declarations at the top of the setup script so you wouldn't need to manually modify any of those files after.
Keep those definitions, but change the |
Beta Was this translation helpful? Give feedback.
-
|
I think the answer is to keep the existing content, though it seems that the generated classes aren't respecting the then When I actually call edit again: I also tried moving my project in a Melos monorepo with my Dart/Flutter libraries instead of using the |
Beta Was this translation helpful? Give feedback.
You don’t want to check the .a; that’ll have the symbols if the rust compiler does its job.
what you’d want to check is the executable of the application itself (the one hidden with the .app bundle). However, I can tell you already that it doesn’t have the symbols (unless the Dart language ffi implementation is wrong, but I highly doubt that). For some reason, the .a is not getting statically linked into the executable. As for why, that’s a bit harder to answer. It’s either not getting found from the podspec or it’s getting tree shaken.
Could you try to see if the example app under flutter_mimir/example here works for you? https://github.com/GregoryConrad/mimir
Melos bs, Melos run build:a…