-
If you are looking for help, please confirm the following...
Which mobile framework are you using?React Native Steps to reproduceTry to build a React native ios app with codeMagic scripts:
- name: Install dependencies
script: |
yarn install
- name: Install CocoaPods dependencies
script: |
cd ios && pod install
- name: Set up provisioning profiles settings on Xcode project
script: |
sudo gem install xcodeproj
sudo xcode-project use-profiles
- name: Build ipa for distribution
script: |
xcode-project build-ipa \
--workspace "$CM_BUILD_DIR/ios/$XCODE_WORKSPACE" \
--scheme "$XCODE_SCHEME"
Expected resultsThe build should happen without problem Actual resultsBut I have this: Failed to set code signing settings for node_modules/react-native-fast-image/ios/FastImage.xcodeproj. It happens at this step: sudo xcode-project use-profiles Build id (optional)648f2f98fd6c8e1321b5a2a6 |
Beta Was this translation helpful? Give feedback.
Answered by
himesh-cm
Jun 19, 2023
Replies: 1 comment 1 reply
-
Hi @iib0011, Please use the below change to your xcode-project use-profile command.
Re-run the build, and let us know how it goes. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
iib0011
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @iib0011,
It seems
.xcodeproj
for theFastImage
is being code signed instead of the actual project.Please use the below change to your xcode-project use-profile command.
xcode-project use-profiles --project ios/*.xcodeproj
Re-run the build, and let us know how it goes.