├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Package.swift ├── README.md ├── SendBirdWebRTC.json ├── SendBirdWebRTC.podspec └── catalog-info.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .swiftpm 2 | Frameworks/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-webrtc-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-webrtc-ios/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-webrtc-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-webrtc-ios/HEAD/README.md -------------------------------------------------------------------------------- /SendBirdWebRTC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-webrtc-ios/HEAD/SendBirdWebRTC.json -------------------------------------------------------------------------------- /SendBirdWebRTC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-webrtc-ios/HEAD/SendBirdWebRTC.podspec -------------------------------------------------------------------------------- /catalog-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-webrtc-ios/HEAD/catalog-info.yml --------------------------------------------------------------------------------