Skip to content

Commit

Permalink
feat(ios): add install failed error message (#13350)
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed Jul 1, 2022
1 parent 2e2cff4 commit e5c8391
Showing 1 changed file with 2 additions and 0 deletions.
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

0 comments on commit e5c8391

Please sign in to comment.