Post

Replies

Boosts

Views

Activity

Reply to Undefined symbols: Linker command failed with exit code 1 (use -v to see invocation)
Ok, I looked at the WebRTC source code from the GitHub project, and there is no AppKit support, just UIKit. If you target a macOS app with macCatalyst, then any derived or subclassed UIView or UIKit-based view or controller subclassed view like RTCEAGLVideoView and RTCMTLVideoView will use the correct symbols. For macOS support using the swift package is going to call for a separate Xcode project targeting macCatalyst. For example: UIView class type is UIKit only. To get this on macOS you will have to use a macCatalyst target. open class RTCEAGLVideoView : UIView, RTCVideoRenderer { weak open var delegate: RTCVideoViewDelegate? public init(frame: CGRect, shader: RTCVideoViewShading) public init(coder aDecoder: NSCoder, shader: RTCVideoViewShading) /** @abstract Wrapped RTCVideoRotation, or nil. */ open var rotationOverride: NSValue? }
Dec ’23
Reply to Reached Limit of created certificates and not able to revoke older ones
Your approach is wrong altogether. Yes one certificate can be used to code sign multiple apps for various clients or downloads outside of the macApp Store but for something like this you should be using the https://developer.apple.com/app-store/small-business-program/ You have exhausted all of your certs and will or might have to wait until the developer account renewal takes place.
Topic: Code Signing SubTopic: General Tags:
Dec ’23
Reply to Access raw audio data with AudioQueueBuffer
You might have better luck using the AVFoundation API for reading and writing audio to the file system. https://developer.apple.com/documentation/avfaudio/audio_engine/performing_offline_audio_processing
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Apple Core Package for Unity
As per the feedback directive on the GitHub repo: All feedback should be directed via the feedback assistant -> https://feedbackassistant.apple.com/
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Error in Preview
Just make isShowing private if it has no external purpose.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Undefined symbols: Linker command failed with exit code 1 (use -v to see invocation)
Have you tried enabling Rosetta support in Xcode if using an Apple Silicon device?
Replies
Boosts
Views
Activity
Dec ’23
Reply to Undefined symbols: Linker command failed with exit code 1 (use -v to see invocation)
Ok, I looked at the WebRTC source code from the GitHub project, and there is no AppKit support, just UIKit. If you target a macOS app with macCatalyst, then any derived or subclassed UIView or UIKit-based view or controller subclassed view like RTCEAGLVideoView and RTCMTLVideoView will use the correct symbols. For macOS support using the swift package is going to call for a separate Xcode project targeting macCatalyst. For example: UIView class type is UIKit only. To get this on macOS you will have to use a macCatalyst target. open class RTCEAGLVideoView : UIView, RTCVideoRenderer { weak open var delegate: RTCVideoViewDelegate? public init(frame: CGRect, shader: RTCVideoViewShading) public init(coder aDecoder: NSCoder, shader: RTCVideoViewShading) /** @abstract Wrapped RTCVideoRotation, or nil. */ open var rotationOverride: NSValue? }
Replies
Boosts
Views
Activity
Dec ’23
Reply to Undefined symbols: Linker command failed with exit code 1 (use -v to see invocation)
Are you using Mac catalyst? I saw a November response on the google repo referring to iOS support only. If these views are UIView based views then there is no way they will ever work natively on macOS (AppKit) without the help of macCatalyst or Designed for iPad destinations added to the target you’re coding against.
Replies
Boosts
Views
Activity
Dec ’23
Reply to Direct Access to macOS Text Replacements
Text replacements? Please elaborate.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Membership expires in 5 days (Renewal )
Apple corporate is usually out of the office during this time of the year. If you have a credit card attached to your developer account to cover your membership renewal just wait for on or after the renewal date for the payment to be processed.
Replies
Boosts
Views
Activity
Dec ’23
Reply to Reached Limit of created certificates and not able to revoke older ones
Your approach is wrong altogether. Yes one certificate can be used to code sign multiple apps for various clients or downloads outside of the macApp Store but for something like this you should be using the https://developer.apple.com/app-store/small-business-program/ You have exhausted all of your certs and will or might have to wait until the developer account renewal takes place.
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to CKModifyRecordsOperation records limit?
Or you can wipe the repository clean and start over via the cloud kit console.
Topic: App & System Services SubTopic: iCloud Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to iOS 17.3 network crash
Is there a question in the above somewhere?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Run macOS application in Github Actions
Wrong forum, please reach out to github support.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to Beyond the visionOS virtual machine
Apply for a VisionOS Kit here https://developer.apple.com/visionos/developer-kit/
Replies
Boosts
Views
Activity
Dec ’23
Reply to "Cycle inside Runner; building could produce unreliable results." Xcode Error
Please post your Flutter issues on the Flutter support or developer portal on Git Hub or Google. Flutter is not an Apple product.
Replies
Boosts
Views
Activity
Dec ’23
Reply to Is it possible to separate WatchApp from its companion iOS App to a different project and remain connectible?
No, it is not possible.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’23