Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ios): add install failed error message #13350

Merged
merged 2 commits into from
Jul 1, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions iphone/cli/hooks/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ exports.init = function (logger, config, cli) {
details = __('Try reconnecting your device and try again.');
} else if (err.indexOf('0xe8008016') !== -1) {
details = __('Chances are there is an issue with your entitlements. Verify the bundle IDs in the generated Info.plist file.; or your provisioning profile probably has some entitlements that are not enabled in the Entitlements.plist file.');
} else if (err.indexOf('0xe800001a') !== -1) {
details = __('Failed to transfer app to device. Check if your devices is registered in your provisioning profile.');
} else {
details = __('For some reason the app failed to install on the device. Try reconnecting your device and check your provisioning profile and entitlements.');
}
Expand Down