fix: fix the missing icons in newly created apps on iOS devices #4843
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.
Currently the icons of newly created apps are not displayed when running the application on iOS device. This happens as the icons are not included into
.pbxproject
file. This happens as theprepareProject
method is not called due to this check https://github.com/NativeScript/nativescript-cli/blob/release/lib/services/platform/prepare-native-platform-service.ts#L35. This check is based on hasChangesRequirePrepare fromprojectChangesService
which value is based onappResourcesChanged
andsigningChanged
- https://github.com/NativeScript/nativescript-cli/blob/release/lib/services/project-changes-service.ts#L27. The values of those properties are not populated correctly initially when the application is withoutplatforms
directory.This functionality was broken with this PR https://github.com/NativeScript/nativescript-cli/pull/4836/files. As this PR changes the behavior of this if, now it never passes and respectively appResourcesChanged and signingChanged are with false values. In other words, we've broken the functionality that set initial values of those properties.
In order to set correctly the initial values of those properties, we decided deleting the setNativePlatformStatus call after adding the platform. This functionally was added in this PR #4139. So here come the question how calling setNativePlatformStatus after adding the platform reflects the current issue with missing icons on device.
setNativePlatformStatus
method sets the nativePlatformStatus property in _prepareInfo and saves it to.nsprepareinfo
file which happens when adding the platform. After that, CLI callsensurePrepareInfo
method https://github.com/NativeScript/nativescript-cli/blob/release/lib/services/project-changes-service.ts#L160. As we've already saved prepareInfo to.nsprepareinfo
file, this if always passes https://github.com/NativeScript/nativescript-cli/blob/release/lib/services/project-changes-service.ts#L162 and we've never reached the code that sets the default values here https://github.com/NativeScript/nativescript-cli/blob/release/lib/services/project-changes-service.ts#L183. This happens as we've already saved.nsprepareinfo
fromsetNativePlatformStatus
method. As callingsetNativePlatformStatus
after adding the platform was introduced as a bug fix when supporting legacy and bundle workflow, we decided to delete this call. This way, we'll ensure that initially when the project is without platforms directory, this code we'll be called https://github.com/NativeScript/nativescript-cli/blob/release/lib/services/project-changes-service.ts#L183 and the initial values of properties will be set correctly.PR Checklist
What is the current behavior?
What is the new behavior?
Fixes issue #4842