"OneSignalNotificationServiceExtension" requires a provisioning profile #1456
Replies: 2 comments
-
Hi, the very first step is to create a profile for OneSignalNotificationServiceExtension and upload it to your code signing identities section in the Codemagic UI. Make sure that your bundle id for OneSignalNotificationServiceExtension is in this format: |
Beta Was this translation helpful? Give feedback.
0 replies
-
This discussion is being closed due to no activity in the last 14 days. You can reopen the discussion at any time if needed. |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone, how can I fix this error while building native ios in codemagic
my codemagic.yaml looks like this:
` workflows:
ios-native:
name: QuickDate iOS
max_build_duration: 120
instance_type: mac_mini_m1
integrations:
app_store_connect: Gpecho_Appstore
environment:
ios_signing:
distribution_type: app_store
bundle_identifier: com.gpecho.app
vars:
BUNDLE_ID: "com.gpecho.app"
XCODE_WORKSPACE: "QuickDate.xcworkspace"
XCODE_SCHEME: "QuickDate"
APP_ID: 1671353999
xcode: latest
cocoapods: default
scripts:
- name: Install CocoaPods dependencies
script: |
pod install
- name: Set up provisioning profiles settings on Xcode project
script: xcode-project use-profiles
- name: Increment build number
script: |
cd $CM_BUILD_DIR
LATEST_BUILD_NUMBER=$(app-store-connect get-latest-app-store-build-number "$APP_ID")
agvtool new-version -all $(($LATEST_BUILD_NUMBER + 1))
- name: Build ipa for distribution
script: |
xcode-project build-ipa
--workspace "$CM_BUILD_DIR/$XCODE_WORKSPACE"
--scheme "$XCODE_SCHEME"
artifacts:
- build/ios/ipa/.ipa
- /tmp/xcodebuild_logs/.log
- $HOME/Library/Developer/Xcode/DerivedData//Build//.app
- $HOME/Library/Developer/Xcode/DerivedData//Build//.dSYM
publishing:
email:
recipients:
- [email protected]
- [email protected]
notify:
success: false
failure: false
app_store_connect:
auth: integration
Beta Was this translation helpful? Give feedback.
All reactions