You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This embedder requres `libflutter_engine.so` (Flutter embedder library). You need to install `libflutter_engine.so` to `/usr/lib`. See: [Building Flutter Engine embedder](./BUILDING-ENGINE-EMBEDDER.md)
100
100
101
-
Or you can download a specific Flutter Engine by the following steps, but it's limited to debug mode and x64 targets.
101
+
Or you can download a specific pre-built Flutter Engine from Google's infra by the following steps, but it's limited to **debug mode** and **x64** targets.
102
102
103
103
[Step1] Check the version (SHA) of the channel you want to use.
[Step3] Install the library. Note that the downloaded library is only **debug mode** and for **x64** targets.
115
+
```Shell
116
+
$ unzip ./linux-x64-embedder
117
+
$ sudo cp ./libflutter_engine.so /usr/lib
118
+
```
119
+
114
120
## 2. Examples
115
121
There are sample projects in [`examples`](./examples) directory. You can also comunicate with Dart code by using the plugin APIs with the same specifications as with Flutter desktops for Windows.
0 commit comments