Hello,
I'm trying to build my app for macOS using Mac Catalyst. However, I've encountered an issue while trying to create an archive build for Mac Catalyst using Xcode command line tools.
I've set up a new profile specifically for Mac Catalyst and I'm using the Apple Distribution Profile. However, when I attempt to export using this profile, I encounter the following error: "error: exportArchive: No signing certificate 'Mac Installer Distribution' found."
I've also tried using a macOS profile, but it results in an error indicating that the profile used is not a Mac Catalyst profile.
Upon investigating my Apple Developer Account, I've noticed that when I select macOS, I can see the Mac Distribution option. However, when I choose Mac Catalyst, I only see the Apple Distribution option in the certificate selection.
Could you please advise on the correct steps to create a profile and certificate for a Mac Catalyst build? Here's the export info plist and the command I'm using to export the Mac Catalyst app:
CLI
xcrun xcodebuild -exportArchive
-archivePath "${ARCHIVE_PATH}"
-exportOptionsPlist "Path/MacOS_AppStore.plist"
-exportPath "${DEPLOY_DIR}"
Export Options Plist:
Post
Replies
Boosts
Views
Activity
Hello,
I'm currently working on an unreleased iOS app with support for macOS using Mac Catalyst. However, I've encountered an issue while trying to create an archive build for Mac Catalyst using Xcode command line tools.
I've set up a new profile specifically for Mac Catalyst and I'm using the Apple Distribution Profile. However, when I attempt to export using this profile, I encounter the following error: "error: exportArchive: No signing certificate 'Mac Installer Distribution' found."
I've also tried using a macOS profile, but it results in an error indicating that the profile used is not a Mac Catalyst profile.
Upon investigating my Apple Developer Account, I've noticed that when I select macOS, I can see the Mac Distribution option. However, when I choose Mac Catalyst, I only see the Apple Distribution option in the certificate selection.
Could you please advise on the correct steps to create a profile and certificate for a Mac Catalyst build? Here's the export info plist and the command I'm using to export the Mac Catalyst app:
xcrun xcodebuild -exportArchive \
-archivePath "${ARCHIVE_PATH}" \
-exportOptionsPlist "Path/MacOS_AppStore.plist" \
-exportPath "${DEPLOY_DIR}"
Export Options Plist:
<dict>
<key>method</key>
<string>app-store</string>
<key>signingStyle</key>
<string>manual</string>
<key>teamID</key>
<string>G28C52EEHV</string>
<key>uploadBitcode</key>
<true/>
<key>uploadSymbols</key>
<true/>
<key>signingCertificate</key>
<string>Apple Distribution</string>
<key>provisioningProfiles</key>
<dict>
<key>com.company.projectName</key>
<string>projectName_MacCat_AppStore</string>
</dict>
</dict>
I appreciate any guidance on this matter.
Hi,
We are facing a strange crash on iOS 16.4 and 16.4.1.
The issue is not happening on iPad 16.4.
We are getting very limited information on the crash, Here is call stack.
0 GameCenterFoundation 0x00000001f0498054 GKGroupActivityManager.reset() + 228 (GKGroupActivityManager.swift:450)
1 GameCenterFoundation 0x00000001f0496e8d GKGroupActivityManager.leave() + 1 (GKGroupActivityManager.swift:411)
2 GameCenterFoundation 0x00000001f04a67dd @objc closure #1 in GKGroupActivityManager.leave() + 1
3 GameCenterFoundation 0x00000001f04a6835 partial apply for @objc closure #1 in GKGroupActivityManager.leave() + 1
4 GameCenterFoundation 0x00000001f04a67f5 thunk for @escaping @callee_guaranteed @Sendable @async () -> () + 1
5 GameCenterFoundation 0x00000001f04a6839 thunk for @escaping @callee_guaranteed @Sendable @async () -> ()partial apply + 1
6 GameCenterFoundation 0x00000001f04a67f9 specialized thunk for @escaping @callee_guaranteed @Sendable @async () -> (@out A) + 1
7 GameCenterFoundation 0x00000001f04a6899 thunk for @escaping @callee_guaranteed @Sendable @async () -> (@out A)specialized partial apply + 1
8 libswift_Concurrency.dylib 0x00000001c84d0dd9 completeTaskWithClosure(swift::AsyncContext*, swift::SwiftError*) + 1 (Task.cpp:496)
Tried looking into GKGroupActivityManager but couldn't find any documentation regarding this.
High number of our usser base is affected by this issue.