@reactiive/ennio 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/cpp/HybridEnnio.cpp +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,13 @@ npx ennio test e2e/ # every *.yaml in the directory
|
|
|
24
24
|
- Expo app on React Native ≥ 0.81 (New Architecture, Fabric)
|
|
25
25
|
- iOS 17+ simulator
|
|
26
26
|
- Xcode 16+, Node 18+
|
|
27
|
-
- `
|
|
27
|
+
- Facebook's `idb` toolchain — gRPC server + Python client (the
|
|
28
|
+
HID daemon imports the `idb` python package):
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
brew install facebook/fb/idb-companion
|
|
32
|
+
pip3 install fb-idb
|
|
33
|
+
```
|
|
28
34
|
|
|
29
35
|
## Setup
|
|
30
36
|
|
package/cpp/HybridEnnio.cpp
CHANGED
|
@@ -535,7 +535,6 @@ static const std::unordered_map<std::string, HandlerFn>& commandHandlers() {
|
|
|
535
535
|
r.success = self->pasteFromClipboard(::ennio::json::parseString(req.payload, "testID"));
|
|
536
536
|
}},
|
|
537
537
|
};
|
|
538
|
-
(void)helper; // suppress unused-capture-style warnings on some compilers.
|
|
539
538
|
return handlers;
|
|
540
539
|
}
|
|
541
540
|
|