mobilecli 0.3.67 → 0.3.68

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 CHANGED
@@ -259,10 +259,10 @@ Example output for `agent status`:
259
259
 
260
260
  ```bash
261
261
  # List crash reports from a device
262
- mobilecli crashes list --device <device-id>
262
+ mobilecli device crashes list --device <device-id>
263
263
 
264
264
  # Get a specific crash report by ID
265
- mobilecli crashes get <crash-id> --device <device-id>
265
+ mobilecli device crashes get <crash-id> --device <device-id>
266
266
  ```
267
267
 
268
268
  Example output for `crashes list`:
@@ -281,6 +281,22 @@ Example output for `crashes list`:
281
281
 
282
282
  **Note**: On iOS real devices, crash reports are fetched via the Apple crashreport service. On iOS simulators, they are read from `~/Library/Logs/DiagnosticReports/`. On Android, crashes are parsed from `adb logcat -b crash`.
283
283
 
284
+ ### Remote Devices ☁️
285
+
286
+ ```bash
287
+ # Allocate a remote iOS device
288
+ mobilecli remote allocate --platform ios --version ">=18" --name "iPhone*" --wait
289
+
290
+ # Allocate a remote Android device (exact OS version)
291
+ mobilecli remote allocate --platform android --version 14 --wait
292
+
293
+ # List available remote devices
294
+ mobilecli remote list-devices
295
+
296
+ # Release an allocated remote device
297
+ mobilecli remote release --device <device-id>
298
+ ```
299
+
284
300
  ## HTTP API 🔌
285
301
 
286
302
  ***mobilecli*** provides an http interface for all the functionality that is available through command line. As a matter of fact, it is preferable to
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobilecli",
3
- "version": "0.3.67",
3
+ "version": "0.3.68",
4
4
  "author": "Mobile Next",
5
5
  "description": "A universal command-line tool for managing iOS and Android devices, simulators, emulators and apps",
6
6
  "repository": {