cannot build ipa file using the yaml getting an error #2019
Replies: 2 comments 13 replies
-
Hey @shmuelsoib, based on the error message, it seems you're still using a provisioning profile that doesn't have those capabilities enabled. Please try downloading it again from Apple Developer and then upload it to Codemagic. |
Beta Was this translation helpful? Give feedback.
13 replies
-
I'm tentatively closing the discussion due to a lack of activity. You can open the discussion again by replying to this message or opening a new discussion. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?
Flutter (Dart)
Steps to reproduce
Hi, i set my my certificates and provisioning profile and tried to build a ipa file with the following yaml workflow:
ios-workflow:
name: iOS Workflow
max_build_duration: 120
environment:
flutter: 3.7.11
xcode: latest
cocoapods: default
ios_signing:
distribution_type: app_store
bundle_identifier: com.safeguard.safety
scripts:
- |
# set up local properties
- flutter packages pub get
- flutter pub get
- xcode-project use-profiles
- find . -name "Podfile" -execdir pod install ;
- flutter build ipa --release --flavor safeguardprod --target lib/flavors/starter_files/main_safeguard_prod.dart --build-name=1.7.1 --build-number=121 -–export-options-plist=/Users/builder/export_options.plist
artifacts:
- build/ios/ipa/.ipa
- /tmp/xcodebuild_logs/.log
- flutter_drive.log
everything worked correctly except for the last command where i am getting the following error:
exportArchive: "Runner.app" requires a provisioning profile with the Near Field Communication Tag Reading and Push Notifications features.
i read in the documentation that this error could occur and followed the steps it said there:
my provisioning profile includes the Near Field Communication Tag Reading and Push Notifications features
thank you for your time
Expected results
an ipa file to be built
Actual results
got the following error:
exportArchive: "Runner.app" requires a provisioning profile with the Near Field Communication Tag Reading and Push Notifications features.
Build id (optional)
No response
Beta Was this translation helpful? Give feedback.
All reactions