├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── README.md ├── SendBirdCalls.podspec ├── SendBirdCalls.xcframework ├── Info.plist ├── ios-arm64 │ ├── SendBirdCalls.framework │ │ ├── Headers │ │ │ ├── SendBirdCalls-Swift.h │ │ │ └── SendBirdCalls.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── SendBirdCalls.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ ├── PrivacyInfo.xcprivacy │ │ └── SendBirdCalls │ └── dSYMs │ │ └── SendBirdCalls.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── DWARF │ │ └── SendBirdCalls │ │ └── Relocations │ │ └── aarch64 │ │ └── SendBirdCalls.yml └── ios-arm64_x86_64-simulator │ ├── SendBirdCalls.framework │ ├── Headers │ │ ├── SendBirdCalls-Swift.h │ │ └── SendBirdCalls.h │ ├── Info.plist │ ├── Modules │ │ ├── SendBirdCalls.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ ├── PrivacyInfo.xcprivacy │ ├── SendBirdCalls │ └── _CodeSignature │ │ └── CodeResources │ └── dSYMs │ └── SendBirdCalls.framework.dSYM │ └── Contents │ ├── Info.plist │ └── Resources │ ├── DWARF │ └── SendBirdCalls │ └── Relocations │ ├── aarch64 │ └── SendBirdCalls.yml │ └── x86_64 │ └── SendBirdCalls.yml ├── Sources └── SendBirdCalls.swift ├── Tests └── sendbird-calls-iosTests │ └── sendbird_calls_iosTests.swift └── catalog-info.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/README.md -------------------------------------------------------------------------------- /SendBirdCalls.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.podspec -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/Info.plist -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Headers/SendBirdCalls-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Headers/SendBirdCalls-Swift.h -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Headers/SendBirdCalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Headers/SendBirdCalls.h -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Info.plist -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/SendBirdCalls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/SendBirdCalls -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/dSYMs/SendBirdCalls.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/dSYMs/SendBirdCalls.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/DWARF/SendBirdCalls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/DWARF/SendBirdCalls -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/Relocations/aarch64/SendBirdCalls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/Relocations/aarch64/SendBirdCalls.yml -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Headers/SendBirdCalls-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Headers/SendBirdCalls-Swift.h -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Headers/SendBirdCalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Headers/SendBirdCalls.h -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Info.plist -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/x86_64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/x86_64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/x86_64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/x86_64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/SendBirdCalls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/SendBirdCalls -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/SendBirdCalls.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendBirdCalls.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendBirdCalls.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/DWARF/SendBirdCalls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/DWARF/SendBirdCalls -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/Relocations/aarch64/SendBirdCalls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/Relocations/aarch64/SendBirdCalls.yml -------------------------------------------------------------------------------- /SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/Relocations/x86_64/SendBirdCalls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/SendBirdCalls.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendBirdCalls.framework.dSYM/Contents/Resources/Relocations/x86_64/SendBirdCalls.yml -------------------------------------------------------------------------------- /Sources/SendBirdCalls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/Sources/SendBirdCalls.swift -------------------------------------------------------------------------------- /Tests/sendbird-calls-iosTests/sendbird_calls_iosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/Tests/sendbird-calls-iosTests/sendbird_calls_iosTests.swift -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendbird/sendbird-calls-ios/HEAD/catalog-info.yaml --------------------------------------------------------------------------------