- minicap
- An Android device with USB debugging enabled.
- Check that your device is connected and ADB is running with
adb devices
. The following steps may not work properly if you don't.
adb devices
- Set up a forward for the server we'll soon have running inside the device. Note that due to laziness the port is currently fixed to 1717.
adb forward tcp:1717 localabstract:minicap
- Get information about your display.
adb shell wm size
- Start the minicap server. You can see more detail in openstf/minicap.
minicap/run.sh -P 720x1280@720x1280/0
- Start the example app.
cargo run --example capture_jpg
screenshot.jpg
will be created.