-
If you are looking for help, please confirm the following...
Which mobile framework are you using?React Native Steps to reproduceChange the structure of the existing project. /Users/builder/clone/apps/white-label-application/whiteLabelApplication/ios/whiteLabelApplication.xcodeproj: error: "whiteLabelApplication" requires a provisioning profile with the Associated Domains and Push Notifications features. Select a provisioning profile in the Signing & Capabilities editor. (in target 'whiteLabelApplication' from project 'whiteLabelApplication') Expected resultsBuild should be successfully published on the stores. Actual results![]() Attached is the screenshot of the error I am getting while building the pipeline. Build id (optional)6762b7938d06277ff9441e0f |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hello @Kutbi-dev
I can see this error in your code signing step before picking up the adhoc certificate. Since you are building white label, automatic code signing might be the best route here. This generates and manages provisioning profiles for each unique $BUNDLE_ID during the build process. You can check out more on this here. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your quick response @dam-ease
|
Beta Was this translation helpful? Give feedback.
Hello @Kutbi-dev,
Thanks for the details!
The reason iOS failed and Android passed seems to be because you didn't change directory before running the iOS related commands.
Instead of having to change the directory every time a script is run, you can define working_directory, every command that is defined in the scripts section will run inside that particular directory. E.g.
Kindly try this out and please share how it goes on your end.