A Swift framework for real-time audio and video communication for iOS applications.
- 🎥 Real-time audio and video calling
- 💬 Text chat
- 🔄 Screen sharing
- 👥 Multiple participants
- iOS 13.0+
- Swift 5.0+
dependencies: [
.package(url: "https://github.com/videosdk-live/videosdk-rtc-ios-spm.git", from: "2.1.1")
]
import VideoSDKRTC
// Configure VideoSDK
VideoSDK.config(token: "VideoSDK Token")
// Initialize and join meeting
let meeting = VideoSDK.initMeeting(
meetingId: "abcd-1234-efgh",
participantName: "John",
micEnabled: true,
webcamEnabled: true
)
meeting.join()
For detailed documentation, visit Documentation Portal