OK, I'm thing to build a simple flutter app. So, to do this on a Linux desktop I did the following:
so the directory structure is
|-- flutter
|-- flutter-desktop-embedding
unzip the files and have this:
|-- flutter
|-- flutter-desktop-embedding
|-- flutter_embedder.h
`-- libflutter_engine.so
I'm lost on what to do with the following:
- Replace
FLUTTER_ENGINE with the SHA of the Flutter engine you wish to use. - The binary is not stripped and contains debug information. Embedders are advised to strip the binary before deployment.
$ cp <path_to_flutter_engine>/src/flutter/shell/platform/embedder/embedder.h \
<path_to_flutter_desktop_embedding_repo>/linux/library/include
But, in the zip, there are just two files .so and flutter_embedded.h is the same as embedder.h?
(Yes, very much a newbie)
Tim