feat(installation-proxy): use remotexpc when iOS>=18#2714
Merged
mykola-mokhnach merged 15 commits intoappium:masterfrom Feb 4, 2026
Merged
feat(installation-proxy): use remotexpc when iOS>=18#2714mykola-mokhnach merged 15 commits intoappium:masterfrom
mykola-mokhnach merged 15 commits intoappium:masterfrom
Conversation
Contributor
Author
|
Hi @mykola-mokhnach @KazuCocoa could you review this PR? |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a unified Installation Proxy abstraction and switches real-device app install/uninstall/list/lookup flows to use appium-ios-remotexpc when running on iOS 18+, while keeping a fallback path for older iOS versions.
Changes:
- Introduced
InstallationProxyClientto unify Installation Proxy operations acrossappium-ios-deviceandappium-ios-remotexpc. - Updated real-device installation/uninstallation and app lookup/list flows to use the new client (RemoteXPC for iOS 18+).
- Updated
mobile: listAppsimplementation to use the unified client.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| lib/device/real-device-management.ts | Routes install/uninstall/list/lookup calls through the new InstallationProxyClient, selecting RemoteXPC on iOS 18+. |
| lib/device/installation-proxy-client.ts | New unified client wrapping ios-device vs remotexpc Installation Proxy APIs with a common interface and cleanup. |
| lib/commands/app-management.ts | Updates mobileListApps to use InstallationProxyClient (RemoteXPC on iOS 18+) and adjusts return typing. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
KazuCocoa
reviewed
Jan 27, 2026
Contributor
|
@navin772 Is the PR ready for another review? |
Contributor
Author
|
Yes, added timeout handling for remotexpc |
KazuCocoa
approved these changes
Feb 1, 2026
navin772
commented
Feb 2, 2026
mykola-mokhnach
approved these changes
Feb 3, 2026
github-actions bot
pushed a commit
that referenced
this pull request
Feb 4, 2026
## [10.20.0](v10.19.1...v10.20.0) (2026-02-04) ### Features * **installation-proxy:** use remotexpc when iOS>=18 ([#2714](#2714)) ([3e5ecc8](3e5ecc8))
Contributor
|
🎉 This PR is included in version 10.20.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Utilizes
appium-ios-remotexpcinstallation proxy for app installation for iOS>=18.Note: We can update the
terminateAppcommand to useappium-ios-remotexpconce we have the process control DVT instrument implemented in remotexpc, this can be done separately. It will remove dependence ondevicectl.