Posts

Post marked as solved
4 Replies
The accepted answer is not correct. Anyone who encounters this issue, beware you might have multiple copies of your app in the derived data. In my case geturl was calling a differing binary. Removing them fixes the issue.
Post marked as solved
7 Replies
Welp, I guess I should have checked the release notes first. You’re currently unable to launch Mac Catalyst and iOS apps using Xcode. (67356581) Very curious decision by Apple here. I guess another version of Xcode to be released?
Post not yet marked as solved
6 Replies
Yeah, they mention this in the release notes.Catalyst apps using UIDocumentInteractionControllermight quit unexpectedly. You can work around this issue by excluding UIDocumentInteractionControllerfunctionality with target macros. (48878552) As a work around for my problem, we pushed files to the Downloads folder when exporting.
Post marked as solved
29 Replies
Agreed the selected Apple provided answer is wrong for this thread, and you are right about xcframework seemingly the only way to get this done. I can't seem to get past errors as well.Another thought is using Cocoapods and their vendored frameworks, but I'm already seeing push back against that.What Apple needs to do is fix xcframeworks or proivde some kind of decent documentation for us to adopt it.
Post marked as solved
29 Replies
Would you share with us your script to compile and sign?
Post marked as solved
29 Replies
There is some work being done on OpenSSL.https://github.com/krzyzanowskim/OpenSSL/issues/60
Post marked as solved
29 Replies
I have not been sucessful yet, but here's the command. There's a wwdc session on Thursday, June 6th, 3:00pm PST. Hopefully the answers are coming in this session, but I'm going to a lab today. I have to get OpenSSL working.$ xcodebuild -create-xcframework -helpOVERVIEW: Utility for packaging multiple build configurations of a given library or framework into a single xcframework.USAGE:xcodebuild -create-xcframework -framework <path> [-framework <path>...] -output <path>xcodebuild -create-xcframework -library <path> [-headers <path>] [-library <path> [-headers <path>]...] -output <path>OPTIONS:-framework <path> Adds a framework from the given <path>.-library <path> Adds a static or dynamic library from the given <path>.-headers <path> Adds the headers from the given <path>. Only applicable with -library.-output <path> The <path> to write the xcframework to.-help Show this help content.Chriss-MacBook-Pro:~ cvbuskirk$