Xcode 14 beta code signing issues when SwiftPM targets include resources
I submitted a TSI to Apple after closing of the feedback. The answer was, that when passing PROVISIONING_PROFILE_SPECIFIER or PROVISIONING_PROFILE to xcodebuild, that setting is applied every target...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Thanks @honkmaster ! Your response was super helpful! It helped me understand how xcodebuild works right now with the new Xcode14. I came up with a little different solution. Let me explain. The issue...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
So one needs to pass xconfig file to xcodebuild in order to sign the target only? Read full topic
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
The xcodebuild applies codesigning parameters to only the app target, because those parameters are only defined for that particular target in Build Settings. Like this: I am not passing xcconfig to...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Thank you all for your contribution. I managed to solve my Xcode14.0 issue with azure's pipeline. So here is what I did: I created the export plist file. I used 'default' for signing option in...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
The above solution worked for us also. Read full topic
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Thanks for your help! This fixed our issue as well. This is our working .yml file in azure devops. steps: - task: CmdLine@2 inputs: script: | mkdir '$(build.artifactStagingDirectory)/Archive'...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Update: My previous code snippet did work for archiving, signing and exporting the .ipa to TestFlight. However, since our project uses some Apple services .i.e. push notification, associated domains...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
I was able to fix this issue on fastlane by adding skip_codesigning: true on gym Read full topic
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Adding skip_codesigning: true didn't actually fix the issue. Entitlments and watch app would not be correctly signed. What really solved the issue was adding xcargs: "CODE_SIGN_STYLE=Manual...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
This issue still alives on Xcode 14.0.1, and seems to be solved on fastlane with adding xcargs "CODE_SIGN_STYLE=Manual" to Gymfile. Read full topic
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Thanks! That solved the issues for us. Read full topic
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Have you somehow disabled the archiving in a previous Xcode task, or are you not running any "clean", or "build" tasks? Is the action "archive" enough? I'm asking, because your current version of the...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
In the initial xcode Task, I used 'packageApp' that will run the ´archive´ mode. But later I figured that I still needed to sign the .ipa with the entitlements. Hence I only needed to archive with...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
We use fastlane match for signing, so the project should be signed manually by default, so CODE_SIGN_STYLE=Manual DEVELOPMENT_TEAM=<TEAM_ID> didn't help. The project is archived successfully on...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Is this still happening on Xcode 14.2? Read full topic
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Confirmed, that this is still happening on Xcode 14.2 Read full topic
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
+1 still facing the same issue with Xcode 14.2. issue with fastlane gym with SPM, passing arguments didn't worked for us. still the same issue. codesigning_identity: "", xcargs:...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Xcode 14.1 (14B47b) Any arguments helps I have an iOS app target that embed 3 frameworks + widget target that is also embed those 3 frameworks. I also tried to add predefined ExportOptions.plist but...
View ArticleXcode 14 beta code signing issues when SwiftPM targets include resources
Adding gym( .... xcargs: "CODE_SIGN_STYLE=Manual DEVELOPMENT_TEAM=" ) Resolved the issue for me Read full topic
View Article