exportArchive: "Runner.app" requires a provisioning profile with Apple features. #2378
Replies: 2 comments
-
Hi @flant-team-zulu, |
Beta Was this translation helpful? Give feedback.
0 replies
-
I'm tentatively closing the discussion since we haven't heard back from you. 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
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?
Flutter (Dart)
Steps to reproduce
I was generate cert for Apple Distribution from API
also i did provisioner profiles (app store) for bundle id with capabilities(and fetch it to codemagic):
Apple Pay Payment Processing, Associated Domains, iCloud, In-App Purchase, Push Notifications, Sign In with Apple
Use this codemagic.yaml:
environment:
ios_signing:
distribution_type: app_store
bundle_identifier: xxxxxxx
vars:
APP_ID: xxxxxx
ENV: dev
scripts:
- name: Build app
script: |
xcode-project use-profiles
flutter clean
flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
flutter build ipa --release --flavor=${ENV}app --dart-define=ENV=$ENV -v
mkdir -p "build/ios/ipa_$ENV"
cp build/ios/ipa/.ipa "build/ios/ipa_$ENV"
artifacts:
- build/ios/ipa_$ENV/.ipa
Expected results
*.ipa files from build
Actual results
[ +3 ms] Building App Store IPA... (completed in 1,943ms)
[ +1 ms] Encountered error while creating the IPA:
[ +2 ms] error: exportArchive: "Runner.app" requires a provisioning profile with the Apple Pay, Associated Domains, Push Notifications, and Sign in with Apple features.
Build id (optional)
65ce089b0d5e23751425b42f
Beta Was this translation helpful? Give feedback.
All reactions