You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building a React Native ios project with, some users encounter errors similar to the following:
Searching for files matching /Users/builder/clone/**/*.xcodeproj
Failed to set code signing settings for node_modules/react-native-fast-image/ios/FastImage.xcodeproj
or
Searching for files matching /Users/builder/clone/**/*.xcodeproj
Failed to set code signing settings for node_modules/react-native-camera-kit/ios/lib/ReactNativeCameraKit.xcodeproj
This error occurs because Codemagic is attempting to apply code signing settings to .xcodeproj files in the node_modules folder (e.g., react-native-fast-image or react-native-camera-kit). However, the actual application project should be targeted instead.
Solution
Explicitly target app's .xcodeproj file by updating the xcode-project use-profiles command:
When building a React Native ios project with, some users encounter errors similar to the following:
or
This error occurs because Codemagic is attempting to apply code signing settings to
.xcodeproj
files in the node_modules folder (e.g., react-native-fast-image or react-native-camera-kit). However, the actual application project should be targeted instead.Solution
Explicitly target app's
.xcodeproj
file by updating thexcode-project use-profiles
command:or
The text was updated successfully, but these errors were encountered: