From 52c5ea65c762334c234f7a378ea35829ab3eaf03 Mon Sep 17 00:00:00 2001 From: Rezisn Date: Fri, 8 May 2026 16:29:29 +0900 Subject: [PATCH 1/3] docs: update docs to include xcbeautify and git submodule --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 311ece0..c19871c 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,12 @@ Control any iOS device or simulator over a simple JSON-RPC API. Tap, swipe, stre git clone https://github.com/mobile-next/devicekit-ios.git cd devicekit-ios +# Install dependencies +brew install xcbeautify + +# Fetch git submodules +git submodule update --init --recursive + # Build unsigned IPA for real devices make ipa-unsigned @@ -74,7 +80,7 @@ Once the server is running at `127.0.0.1:12004`, make your first call: ```bash curl -X POST http://127.0.0.1:12004/rpc \ -H "Content-Type: application/json" \ - -d '{"jsonrpc":"2.0","method":"device.screenshot","params":{},"id":1}' + -d '{"jsonrpc":"2.0","method":"device.screenshot","params":{ "format": "jpg" },"id":1}' ``` Returns a base64-encoded PNG of the current screen. From de43ec65071a8911273be168bb6b19fd045e4840 Mon Sep 17 00:00:00 2001 From: Rezisn Date: Fri, 8 May 2026 16:35:30 +0900 Subject: [PATCH 2/3] docs: update example to use png --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c19871c..8ef8f67 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Once the server is running at `127.0.0.1:12004`, make your first call: ```bash curl -X POST http://127.0.0.1:12004/rpc \ -H "Content-Type: application/json" \ - -d '{"jsonrpc":"2.0","method":"device.screenshot","params":{ "format": "jpg" },"id":1}' + -d '{"jsonrpc":"2.0","method":"device.screenshot","params":{ "format": "png" },"id":1}' ``` Returns a base64-encoded PNG of the current screen. From 676d72238f5186bb395b80f90abac35662a94bbe Mon Sep 17 00:00:00 2001 From: Gil Megidish Date: Sun, 14 Jun 2026 17:34:12 +0200 Subject: [PATCH 3/3] Update README to remove git submodule instructions Submodules have been removed, moved to another repo --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 8ef8f67..5219d18 100644 --- a/README.md +++ b/README.md @@ -52,9 +52,6 @@ cd devicekit-ios # Install dependencies brew install xcbeautify -# Fetch git submodules -git submodule update --init --recursive - # Build unsigned IPA for real devices make ipa-unsigned