Supported platforms:
- iOS 13.0 and later
- tvOS 13.0 and later
macOS is currently not supported.
- Xcode 26.2 or newer
- Swift 6.2 or newer
- iOS deployment target 13.0 or greater
- tvOS deployment target 13.0 or greater
The SDK is compiled using Swift 6.2.3.
- Open your project in Xcode
- Go to
File→Add Package Dependencies - Search for the System73 SDK using the repo's URL:
- Enter the repository URL:
https://github.com/System73/system73-sdk-ios-spm.git
- Next, set the
Dependency Ruleto beUp to Next Major Version. - Add the package to your app target
Xcode will automatically resolve and link all required components.
Import PolyNetSDK in your Swift file:
import PolyNetSDKInitialize the SDK during application startup.
Example:
import PolyNetSDK
class ViewController: UIViewController {
var polyNet: PolyNet?
func initialize() {
// Add actual SDK initialization here if required
polyNet = try PolyNet(manifestUrl: manifestUrlTextField.text!, channelId: channelIdTextField.text!, apiKey: apiKeyTextField.text!, contentSteeringEndpoint: contentSteeringEndpointTextField.text ?? "")
}
}The package includes the following frameworks:
- PolyNetSDK (Core SDK)
- WebRTC (Real-time communication)
- Starscream (WebSocket support)
- SwiftProtobuf (Protocol serialization)
No additional setup is required.After importing the package, all SDK features and bundled frameworks become automatically available.
PolyNetSDK.xcframework supports:
iOS: - arm64 (devices) - arm64 and x86_64 (simulator)
tvOS: - arm64 (devices) - x86_64 (simulator)
Compatible with both Apple Silicon and Intel systems.
If you see:
No such module 'PolyNetPackage'
Try:
- Clean build folder (Shift + Command + K)
- Restart Xcode
- Reset package cache (File → Packages → Reset Package Caches)
Try:
- Verify repository URL
- Check internet connection
- Delete DerivedData:
https://github.com/System73/system73-sdk-ios-spm.git
~/Library/Developer/Xcode/DerivedData
Ensure:
- Project uses supported Swift version
Please visit system73.com/docs for more information or contact us
For questions:
- 🐞 Open a GitHub Issue
© 2026 System73®. All rights reserved.


