GH-407: remove removing certificates functions in xcode post scripts #508
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.
Platforms affected
ios
What does this PR do?
To fix #407 with automatic provioning.
This PR fixs the issue that
ios-deploy(cordova run --device) can not work with automatic provisoning.This PR simply remove following lines
in cordova/lib/copy-www-build-step.js.
I am not sure why that codes are here.
But I image that the old version of the cordova use
xcrunfor the certification after building process. In such situation, the above codes are necessary.However I found that these codes lead strange behavior with automatic provisioning in ios-deploy (in
cordova run --device) as reported in #407 .What testing has been done on this change?
I test as following on my local mac (mojave).
cordova run --devicewith automatic provisioning using Xcode 10.1.cordova run --devicewith manual provioning using Xcode 10.1.cordova run --devicewith automatic provisioning using Xcode 9.4.1.cordova run --devicewith manual provioning using Xcode 9.4.1.All they works well.