edoctor-sendbird-calls 1.1.0 → 1.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/README.md +3 -9
  2. package/edoctor-sendbird-calls.podspec +4 -3
  3. package/ios/Frameworks/SendBirdCalls.xcframework/Info.plist +47 -0
  4. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Headers/SendBirdCalls-Swift.h +3281 -0
  5. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Headers/SendBirdCalls.h +12 -0
  6. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Info.plist +0 -0
  7. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.abi.json +301055 -0
  8. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.private.swiftinterface +1105 -0
  9. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  10. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios.swiftinterface +1105 -0
  11. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/Modules/module.modulemap +11 -0
  12. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/PrivacyInfo.xcprivacy +57 -0
  13. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64/SendBirdCalls.framework/SendBirdCalls +0 -0
  14. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/Headers/SendBirdCalls-Swift.h +3281 -0
  15. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/Headers/SendBirdCalls.h +12 -0
  16. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/Info.plist +0 -0
  17. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.abi.json +301055 -0
  18. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +1105 -0
  19. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  20. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/Modules/SendBirdCalls.swiftmodule/arm64-apple-ios-simulator.swiftinterface +1105 -0
  21. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/Modules/module.modulemap +11 -0
  22. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/PrivacyInfo.xcprivacy +57 -0
  23. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/SendBirdCalls +0 -0
  24. package/ios/Frameworks/SendBirdCalls.xcframework/ios-arm64-simulator/SendBirdCalls.framework/_CodeSignature/CodeResources +201 -0
  25. package/package.json +3 -1
package/README.md CHANGED
@@ -17,15 +17,9 @@ yarn add edoctor-sendbird-calls
17
17
  cd ios && pod install
18
18
  ```
19
19
 
20
- ### 2. Add SendBirdCalls via SPM
21
- 1. Open `.xcworkspace` in Xcode
22
- 2. **File** **Add Package Dependencies**
23
- 3. URL: `https://github.com/sendbird/sendbird-calls-ios`
24
- 4. Version: **1.11.1** or later
25
- 5. Add to **both** your app target and `edoctor-sendbird-calls` pod target
26
- 6. Set framework to **Do Not Embed** in both targets
27
-
28
- > **Note:** After `pod install`, verify the pod target still links `SendBirdCalls` framework.
20
+ ### 2. SendBirdCalls & WebRTC frameworks
21
+ The pod now vendors `SendBirdCalls.xcframework` and `WebRTC.xcframework` directly, so no extra Swift Package dependency is required.
22
+ If you previously added the `sendbird-calls-ios` package in Xcode, remove it from **Package Dependencies** to avoid missing product or duplicate symbol errors.
29
23
 
30
24
  ### 3. Configure Permissions
31
25
 
@@ -16,10 +16,12 @@ Pod::Spec.new do |s|
16
16
 
17
17
  s.source_files = "ios/*.{h,m,mm,swift}", "ios/Extensions/**/*.{h,m,mm,swift}"
18
18
  s.resource_bundles = {'edoctor-sendbird-calls_PrivacyInfo' => ['ios/PrivacyInfo.xcprivacy'] }
19
+ s.vendored_frameworks = "ios/Frameworks/SendBirdCalls.xcframework"
19
20
 
20
21
  s.static_framework = true
21
-
22
+
22
23
  s.dependency "React-Core"
24
+ s.dependency "WebRTC-SDK"
23
25
 
24
26
  s.frameworks = "UIKit", "Foundation", "AVFoundation", "AudioToolbox", "CoreMedia", "CoreTelephony", "Network", "SystemConfiguration", "VideoToolbox", "CallKit", "CoreVideo", "CoreGraphics", "GLKit", "Metal", "MetalKit", "QuartzCore", "PushKit", "AVKit", "MediaPlayer"
25
27
  s.libraries = "c++", "sqlite3", "z"
@@ -27,8 +29,7 @@ Pod::Spec.new do |s|
27
29
  s.pod_target_xcconfig = {
28
30
  'DEFINES_MODULE' => 'YES',
29
31
  'SWIFT_COMPILATION_MODE' => 'wholemodule',
30
- 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) $(BUILT_PRODUCTS_DIR)/PackageFrameworks',
31
- 'OTHER_LDFLAGS' => '$(inherited) -framework SendBirdCalls -framework WebRTC'
32
+ 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PODS_TARGET_SRCROOT)/ios/Frameworks"'
32
33
  }
33
34
 
34
35
  # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>AvailableLibraries</key>
6
+ <array>
7
+ <dict>
8
+ <key>BinaryPath</key>
9
+ <string>SendBirdCalls.framework/SendBirdCalls</string>
10
+ <key>DebugSymbolsPath</key>
11
+ <string>dSYMs</string>
12
+ <key>LibraryIdentifier</key>
13
+ <string>ios-arm64-simulator</string>
14
+ <key>LibraryPath</key>
15
+ <string>SendBirdCalls.framework</string>
16
+ <key>SupportedArchitectures</key>
17
+ <array>
18
+ <string>arm64</string>
19
+ </array>
20
+ <key>SupportedPlatform</key>
21
+ <string>ios</string>
22
+ <key>SupportedPlatformVariant</key>
23
+ <string>simulator</string>
24
+ </dict>
25
+ <dict>
26
+ <key>BinaryPath</key>
27
+ <string>SendBirdCalls.framework/SendBirdCalls</string>
28
+ <key>DebugSymbolsPath</key>
29
+ <string>dSYMs</string>
30
+ <key>LibraryIdentifier</key>
31
+ <string>ios-arm64</string>
32
+ <key>LibraryPath</key>
33
+ <string>SendBirdCalls.framework</string>
34
+ <key>SupportedArchitectures</key>
35
+ <array>
36
+ <string>arm64</string>
37
+ </array>
38
+ <key>SupportedPlatform</key>
39
+ <string>ios</string>
40
+ </dict>
41
+ </array>
42
+ <key>CFBundlePackageType</key>
43
+ <string>XFWK</string>
44
+ <key>XCFrameworkFormatVersion</key>
45
+ <string>1.0</string>
46
+ </dict>
47
+ </plist>