@kaleyra/video-react-native-module 1.6.0 → 2.0.0

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 (113) hide show
  1. package/README.md +17 -47
  2. package/android/build.gradle +24 -32
  3. package/android/gradle.properties +3 -3
  4. package/android/settings.gradle +0 -5
  5. package/android/src/main/AndroidManifest.xml +1 -1
  6. package/android/src/main/assets/kaleyra_video_wrapper_info.txt +1 -1
  7. package/android/src/main/java/com/kaleyra/video_react_native_module/VideoNativeModule.kt +0 -9
  8. package/index.ts +0 -2
  9. package/ios/PluginInfo/_KaleyraVideoHybridVersionInfo.swift +1 -1
  10. package/ios/VideoNativeModule.m +0 -6
  11. package/ios/VideoNativeModule.swift +1 -20
  12. package/lib/commonjs/src/KaleyraVideo.js +0 -34
  13. package/lib/module/src/KaleyraVideo.js +0 -34
  14. package/lib/typescript/index.d.ts +2 -2
  15. package/lib/typescript/native-bridge/TypeScript/types/UserDetails.d.ts +3 -15
  16. package/lib/typescript/src/KaleyraVideo.d.ts +1 -16
  17. package/native-bridge/TypeScript/types/UserDetails.ts +3 -18
  18. package/native-bridge/android/bridge.gradle +71 -0
  19. package/native-bridge/android/build.gradle +5 -61
  20. package/native-bridge/android/gradle/wrapper/gradle-wrapper.properties +1 -1
  21. package/native-bridge/android/settings.gradle +8 -0
  22. package/native-bridge/android/src/main/AndroidManifest.xml +1 -1
  23. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/DTOs.kt +6 -40
  24. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/SDKAccessTokenProviderProxy.kt +9 -7
  25. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/VideoHybridBridge.kt +0 -2
  26. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/VideoSDKHybridBridge.kt +13 -23
  27. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/configurator/VideoSDKConfigurator.kt +11 -5
  28. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/connector/VideoSDKCachedUserConnector.kt +7 -5
  29. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/CallEventsReporter.kt +27 -35
  30. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/ChatEventsReporter.kt +34 -24
  31. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/CrossPlatformModuleStatus.kt +14 -15
  32. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/ModuleEventsReporter.kt +40 -18
  33. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/SDKEventsReporter.kt +6 -6
  34. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/CallDisplayExtension.kt +4 -3
  35. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/CallTypeExtensions.kt +12 -0
  36. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/ConfigurationExtension.kt +17 -23
  37. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/EnvironmentExtension.kt +3 -3
  38. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/RecordingTypeExtension.kt +5 -7
  39. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/RegionExtension.kt +4 -4
  40. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/ScreenShareToolConfigurationExtension.kt +5 -6
  41. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/ToolsExtension.kt +49 -81
  42. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/UserExtensions.kt +24 -17
  43. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/notifications/KaleyraVideoNotificationService.kt +1 -2
  44. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/UserDetailsDao.kt +1 -1
  45. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/UserDetailsEntity.kt +2 -6
  46. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/VideoHybridBridgeRepository.kt +1 -1
  47. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/ui/SDKUserInterfacePresenter.kt +22 -20
  48. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/user_details/CachedUserDetails.kt +0 -3
  49. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/user_details/SDKCachedUserDetails.kt +22 -30
  50. package/native-bridge/iOS/KaleyraVideoHybridNativeBridge.xcodeproj/project.pbxproj +84 -132
  51. package/native-bridge/iOS/Podfile +2 -2
  52. package/native-bridge/iOS/Podfile.lock +9 -9
  53. package/native-bridge/iOS/Source/Abstractions/CallWindowProtocol.swift +3 -6
  54. package/native-bridge/iOS/Source/Abstractions/KaleyraVideoSDKProtocol.swift +20 -0
  55. package/native-bridge/iOS/Source/AccessToken/AccessTokenRequester.swift +0 -1
  56. package/native-bridge/iOS/Source/AccessToken/TokenProvider.swift +1 -2
  57. package/native-bridge/iOS/Source/Broadcast/BroadcastConfigurationPlistReader.swift +0 -1
  58. package/native-bridge/iOS/Source/Concurrency/DispatchQueue+isMain.swift +0 -1
  59. package/native-bridge/iOS/Source/Concurrency/MainQueueDispatcher.swift +0 -1
  60. package/native-bridge/iOS/Source/Concurrency/MainQueueRelay.swift +0 -1
  61. package/native-bridge/iOS/Source/DTOs/AudioCallOptions+Equatable.swift +0 -1
  62. package/native-bridge/iOS/Source/DTOs/AudioCallOptions+KaleyraVideoSDK.swift +13 -0
  63. package/native-bridge/iOS/Source/DTOs/{AudioCallType+Bandyer.swift → AudioCallType+KaleyraVideoSDK.swift} +2 -3
  64. package/native-bridge/iOS/Source/DTOs/CallOptions+Equatable.swift +0 -1
  65. package/native-bridge/iOS/Source/DTOs/CallOptions+KaleyraVideoSDK.swift +12 -0
  66. package/native-bridge/iOS/Source/DTOs/{CallType+Bandyer.swift → CallType+KaleyraVideoSDK.swift} +2 -3
  67. package/native-bridge/iOS/Source/DTOs/CreateCallOptions+KaleyraVideoSDK.swift +12 -0
  68. package/native-bridge/iOS/Source/DTOs/DTOs.swift +3 -25
  69. package/native-bridge/iOS/Source/DTOs/{Environment+Bandyer.swift → Environment+KaleyraVideoSDK.swift} +2 -3
  70. package/native-bridge/iOS/Source/DTOs/KaleyraVideoConfiguration+KaleyraVideoSDK.swift +113 -0
  71. package/native-bridge/iOS/Source/DTOs/KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift +0 -1
  72. package/native-bridge/iOS/Source/DTOs/RecordingType+KaleyraVideoSDK.swift +19 -0
  73. package/native-bridge/iOS/Source/DTOs/{Region+Bandyer.swift → Region+KaleyraVideoSDK.swift} +2 -3
  74. package/native-bridge/iOS/Source/DTOs/UserDetails+Decodable.swift +4 -10
  75. package/native-bridge/iOS/Source/DTOs/UserDetails+KaleyraVideoSDK.swift +15 -0
  76. package/native-bridge/iOS/Source/Events/Reporters/CallClientEventsReporter.swift +41 -16
  77. package/native-bridge/iOS/Source/Events/Reporters/ChatClientEventsReporter.swift +22 -17
  78. package/native-bridge/iOS/Source/Events/Reporters/ClientState.swift +14 -42
  79. package/native-bridge/iOS/Source/Events/Reporters/EventsReporter.swift +17 -13
  80. package/native-bridge/iOS/Source/Extensions/URL+FromString.swift +0 -2
  81. package/native-bridge/iOS/Source/NativeHybridBridge/VideoHybridNativeBridge.swift +14 -43
  82. package/native-bridge/iOS/Source/NativeHybridBridge/VideoHybridNativeBridgeError.swift +0 -1
  83. package/native-bridge/iOS/Source/UI/KaleyraVideoSDKUserInterfacePresenter.swift +68 -100
  84. package/native-bridge/iOS/Source/UI/Presenters/PresentingViewControllerViewControllerPresenter.swift +0 -1
  85. package/native-bridge/iOS/Source/UI/Presenters/ViewControllerPresenter.swift +0 -1
  86. package/native-bridge/iOS/Source/UI/Presenters/WindowViewControllerPresenter.swift +0 -1
  87. package/native-bridge/iOS/Source/UI/UserInterfacePresenter+MainQueueRelay.swift +0 -1
  88. package/native-bridge/iOS/Source/UI/UserInterfacePresenter.swift +0 -1
  89. package/native-bridge/iOS/Source/User Details/Cache/UsersDetailsCache.swift +6 -7
  90. package/native-bridge/iOS/Source/User Details/Providers/UsersDetailsProvider.swift +6 -19
  91. package/package.json +9 -7
  92. package/src/KaleyraVideo.ts +0 -42
  93. package/video-react-native-module.podspec +4 -4
  94. package/lib/commonjs/native-bridge/TypeScript/UserDetailsFormatValidator.js +0 -32
  95. package/lib/commonjs/native-bridge/TypeScript/types/UserDetailsFormat.js +0 -4
  96. package/lib/module/native-bridge/TypeScript/UserDetailsFormatValidator.js +0 -28
  97. package/lib/module/native-bridge/TypeScript/types/UserDetailsFormat.js +0 -3
  98. package/lib/typescript/native-bridge/TypeScript/UserDetailsFormatValidator.d.ts +0 -4
  99. package/lib/typescript/native-bridge/TypeScript/types/UserDetailsFormat.d.ts +0 -19
  100. package/native-bridge/TypeScript/UserDetailsFormatValidator.ts +0 -35
  101. package/native-bridge/TypeScript/types/UserDetailsFormat.ts +0 -23
  102. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/user_details/CachedUserDetailsFormatter.kt +0 -59
  103. package/native-bridge/iOS/Source/Abstractions/BandyerSDKProtocol.swift +0 -25
  104. package/native-bridge/iOS/Source/DTOs/AudioCallOptions+Bandyer.swift +0 -14
  105. package/native-bridge/iOS/Source/DTOs/CallOptions+Bandyer.swift +0 -14
  106. package/native-bridge/iOS/Source/DTOs/CreateCallOptions+Intent.swift +0 -17
  107. package/native-bridge/iOS/Source/DTOs/KaleyraVideoConfiguration+Bandyer.swift +0 -158
  108. package/native-bridge/iOS/Source/DTOs/RecordingType+Bandyer.swift +0 -33
  109. package/native-bridge/iOS/Source/DTOs/UserDetails+Bandyer.swift +0 -18
  110. package/native-bridge/iOS/Source/DTOs/UserDetailsFormat+Decodable.swift +0 -19
  111. package/native-bridge/iOS/Source/Events/Reporters/PushTokenEventsReporter.swift +0 -34
  112. package/native-bridge/iOS/Source/User Details/Formatter/FormatterProxy.swift +0 -16
  113. package/native-bridge/iOS/Source/User Details/Formatter/UserDetailsFormatter.swift +0 -83
@@ -9,13 +9,15 @@
9
9
  /* Begin PBXBuildFile section */
10
10
  76F386C72A8629D7FEEA9772 /* Pods_KaleyraVideoHybridNativeBridge.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C77C58764B5DB5F383BE462 /* Pods_KaleyraVideoHybridNativeBridge.framework */; };
11
11
  9F6CF28AAAF0D5AA9DD43E82 /* Pods_KaleyraVideoHybridNativeBridge_KaleyraVideoHybridNativeBridgeTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C1BE0F8F5443147BF27F063 /* Pods_KaleyraVideoHybridNativeBridge_KaleyraVideoHybridNativeBridgeTests.framework */; };
12
+ F92FB5E32CE262BA0028D419 /* ConferenceStub.swift in Sources */ = {isa = PBXBuildFile; fileRef = F92FB5E22CE262BA0028D419 /* ConferenceStub.swift */; };
12
13
  F931C8AF29DECE2400194E1D /* URL+FromString.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8AE29DECE2400194E1D /* URL+FromString.swift */; };
13
14
  F931C8B229DECF7600194E1D /* URL+FromStringTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8B129DECF7600194E1D /* URL+FromStringTests.swift */; };
14
15
  F931C8B429DEF24600194E1D /* KaleyraVideoSDKUserInterfacePresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8B329DEF24600194E1D /* KaleyraVideoSDKUserInterfacePresenter.swift */; };
15
16
  F931C8B629DEF34300194E1D /* KaleyraVideoSDKUserInterfacePresenterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8B529DEF34300194E1D /* KaleyraVideoSDKUserInterfacePresenterTests.swift */; };
16
- F931C8B829DEF54500194E1D /* BandyerSDKDoubles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8B729DEF54500194E1D /* BandyerSDKDoubles.swift */; };
17
- F933A99C2A14E41D009B1773 /* KaleyraVideoConfiguration+BandyerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F933A99B2A14E41D009B1773 /* KaleyraVideoConfiguration+BandyerTests.swift */; };
17
+ F931C8B829DEF54500194E1D /* KaleyraVideoSDKDoubles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8B729DEF54500194E1D /* KaleyraVideoSDKDoubles.swift */; };
18
+ F933A99C2A14E41D009B1773 /* KaleyraVideoConfiguration+KaleyraVideoSDKTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F933A99B2A14E41D009B1773 /* KaleyraVideoConfiguration+KaleyraVideoSDKTests.swift */; };
18
19
  F933A99E2A150E1E009B1773 /* FakePushCredentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = F933A99D2A150E1E009B1773 /* FakePushCredentials.swift */; };
20
+ F940C1BA2CE7541E00E4E120 /* UserDetails+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F940C1B92CE7541E00E4E120 /* UserDetails+DecodableTests.swift */; };
19
21
  F9594D9129E842C700DD80A6 /* UserInterfacePresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9594D9029E842C700DD80A6 /* UserInterfacePresenter.swift */; };
20
22
  F967342329D2EE0900F9B914 /* AccessTokenRequester.swift in Sources */ = {isa = PBXBuildFile; fileRef = F967342229D2EE0800F9B914 /* AccessTokenRequester.swift */; };
21
23
  F967342529D2EFE500F9B914 /* TokenProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F967342429D2EFE500F9B914 /* TokenProvider.swift */; };
@@ -30,72 +32,63 @@
30
32
  F9875CC229A663B300A91C93 /* Locking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8629A663B200A91C93 /* Locking.swift */; };
31
33
  F9875CC329A663B300A91C93 /* DispatchQueue+isMain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8729A663B200A91C93 /* DispatchQueue+isMain.swift */; };
32
34
  F9875CC429A663B300A91C93 /* DTOs.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8929A663B200A91C93 /* DTOs.swift */; };
33
- F9875CC529A663B300A91C93 /* CallType+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8A29A663B200A91C93 /* CallType+Bandyer.swift */; };
34
- F9875CC629A663B300A91C93 /* Region+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8B29A663B200A91C93 /* Region+Bandyer.swift */; };
35
+ F9875CC529A663B300A91C93 /* CallType+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8A29A663B200A91C93 /* CallType+KaleyraVideoSDK.swift */; };
36
+ F9875CC629A663B300A91C93 /* Region+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8B29A663B200A91C93 /* Region+KaleyraVideoSDK.swift */; };
35
37
  F9875CC729A663B300A91C93 /* CallOptions+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8C29A663B200A91C93 /* CallOptions+Decodable.swift */; };
36
38
  F9875CC829A663B300A91C93 /* CreateCallOptions+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8D29A663B200A91C93 /* CreateCallOptions+Decodable.swift */; };
37
39
  F9875CC929A663B300A91C93 /* CallType+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8E29A663B200A91C93 /* CallType+Decodable.swift */; };
38
40
  F9875CCA29A663B300A91C93 /* CallKitConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8F29A663B200A91C93 /* CallKitConfiguration+Decodable.swift */; };
39
41
  F9875CCB29A663B300A91C93 /* Environment+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9029A663B200A91C93 /* Environment+Decodable.swift */; };
40
- F9875CCC29A663B300A91C93 /* Environment+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9129A663B200A91C93 /* Environment+Bandyer.swift */; };
42
+ F9875CCC29A663B300A91C93 /* Environment+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9129A663B200A91C93 /* Environment+KaleyraVideoSDK.swift */; };
41
43
  F9875CCD29A663B300A91C93 /* IosConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9229A663B200A91C93 /* IosConfiguration+Decodable.swift */; };
42
44
  F9875CCE29A663B300A91C93 /* VoipHandlingStrategy+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9329A663B200A91C93 /* VoipHandlingStrategy+Decodable.swift */; };
43
45
  F9875CCF29A663B300A91C93 /* JSONDecodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9429A663B200A91C93 /* JSONDecodable.swift */; };
44
- F9875CD029A663B300A91C93 /* AudioCallType+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9529A663B200A91C93 /* AudioCallType+Bandyer.swift */; };
45
- F9875CD129A663B300A91C93 /* CreateCallOptions+Intent.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9629A663B200A91C93 /* CreateCallOptions+Intent.swift */; };
46
+ F9875CD029A663B300A91C93 /* AudioCallType+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9529A663B200A91C93 /* AudioCallType+KaleyraVideoSDK.swift */; };
47
+ F9875CD129A663B300A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9629A663B200A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift */; };
46
48
  F9875CD229A663B300A91C93 /* AudioCallOptions+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9729A663B200A91C93 /* AudioCallOptions+Decodable.swift */; };
47
49
  F9875CD429A663B300A91C93 /* ChatToolConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9929A663B200A91C93 /* ChatToolConfiguration+Decodable.swift */; };
48
- F9875CD529A663B300A91C93 /* AudioCallOptions+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9A29A663B200A91C93 /* AudioCallOptions+Bandyer.swift */; };
50
+ F9875CD529A663B300A91C93 /* AudioCallOptions+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9A29A663B200A91C93 /* AudioCallOptions+KaleyraVideoSDK.swift */; };
49
51
  F9875CD729A663B300A91C93 /* AccessTokenResponse+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9C29A663B200A91C93 /* AccessTokenResponse+Decodable.swift */; };
50
52
  F9875CD829A663B300A91C93 /* AccessTokenRequest+Encodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9D29A663B200A91C93 /* AccessTokenRequest+Encodable.swift */; };
51
53
  F9875CD929A663B300A91C93 /* UserDetails+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9E29A663B200A91C93 /* UserDetails+Decodable.swift */; };
52
- F9875CDA29A663B300A91C93 /* RecordingType+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9F29A663B200A91C93 /* RecordingType+Bandyer.swift */; };
53
- F9875CDB29A663B300A91C93 /* UserDetailsFormat+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA029A663B200A91C93 /* UserDetailsFormat+Decodable.swift */; };
54
+ F9875CDA29A663B300A91C93 /* RecordingType+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9F29A663B200A91C93 /* RecordingType+KaleyraVideoSDK.swift */; };
54
55
  F9875CDC29A663B300A91C93 /* Region+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA129A663B200A91C93 /* Region+Decodable.swift */; };
55
56
  F9875CDD29A663B300A91C93 /* Tools+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA229A663B200A91C93 /* Tools+Decodable.swift */; };
56
57
  F9875CDE29A663B300A91C93 /* Array+JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA329A663B200A91C93 /* Array+JSON.swift */; };
57
58
  F9875CDF29A663B300A91C93 /* ScreenShareToolConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA429A663B200A91C93 /* ScreenShareToolConfiguration+Decodable.swift */; };
58
59
  F9875CE029A663B300A91C93 /* AudioCallType+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA529A663B200A91C93 /* AudioCallType+Decodable.swift */; };
59
- F9875CE129A663B300A91C93 /* UserDetails+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA629A663B200A91C93 /* UserDetails+Bandyer.swift */; };
60
+ F9875CE129A663B300A91C93 /* UserDetails+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA629A663B200A91C93 /* UserDetails+KaleyraVideoSDK.swift */; };
60
61
  F9875CE229A663B300A91C93 /* RecordingType+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA729A663B200A91C93 /* RecordingType+Decodable.swift */; };
61
62
  F9875CE329A663B300A91C93 /* EventEmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAA29A663B200A91C93 /* EventEmitter.swift */; };
62
63
  F9875CE429A663B300A91C93 /* Events+Description.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAB29A663B200A91C93 /* Events+Description.swift */; };
63
64
  F9875CE529A663B300A91C93 /* Events.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAC29A663B200A91C93 /* Events.swift */; };
64
- F9875CE629A663B300A91C93 /* PushTokenEventsReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAE29A663B200A91C93 /* PushTokenEventsReporter.swift */; };
65
65
  F9875CE729A663B300A91C93 /* ChatClientEventsReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAF29A663B200A91C93 /* ChatClientEventsReporter.swift */; };
66
66
  F9875CE829A663B300A91C93 /* CallClientEventsReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CB029A663B200A91C93 /* CallClientEventsReporter.swift */; };
67
67
  F9875CE929A663B300A91C93 /* ClientState.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CB129A663B200A91C93 /* ClientState.swift */; };
68
68
  F9875CEA29A663B300A91C93 /* BroadcastConfigurationPlistReader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CB329A663B200A91C93 /* BroadcastConfigurationPlistReader.swift */; };
69
69
  F9875CEE29A663B300A91C93 /* UsersDetailsCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CBB29A663B300A91C93 /* UsersDetailsCache.swift */; };
70
70
  F9875CEF29A663B300A91C93 /* UsersDetailsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CBD29A663B300A91C93 /* UsersDetailsProvider.swift */; };
71
- F9875CF029A663B300A91C93 /* FormatterProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CBF29A663B300A91C93 /* FormatterProxy.swift */; };
72
- F9875CF129A663B300A91C93 /* UserDetailsFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CC029A663B300A91C93 /* UserDetailsFormatter.swift */; };
73
71
  F9875D3229A6650A00A91C93 /* CreateCallOptions+JSONTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF429A6650A00A91C93 /* CreateCallOptions+JSONTests.swift */; };
74
72
  F9875D3329A6650A00A91C93 /* IosConfiguration+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF529A6650A00A91C93 /* IosConfiguration+DecodableTests.swift */; };
75
- F9875D3429A6650A00A91C93 /* CreateCallOptions+IntentTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF629A6650A00A91C93 /* CreateCallOptions+IntentTests.swift */; };
73
+ F9875D3429A6650A00A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF629A6650A00A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift */; };
76
74
  F9875D3529A6650A00A91C93 /* Tools+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF729A6650A00A91C93 /* Tools+DecodableTests.swift */; };
77
75
  F9875D3629A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF829A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift */; };
78
76
  F9875D3729A6650A00A91C93 /* EnvironmentTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF929A6650A00A91C93 /* EnvironmentTests.swift */; };
79
77
  F9875D3829A6650A00A91C93 /* CreateCallOptions+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFA29A6650A00A91C93 /* CreateCallOptions+DecodableTests.swift */; };
80
- F9875D3929A6650A00A91C93 /* UserDetailsFormat+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFB29A6650A00A91C93 /* UserDetailsFormat+DecodableTests.swift */; };
81
78
  F9875D3A29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFC29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift */; };
82
79
  F9875D3B29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFD29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift */; };
83
80
  F9875D3C29A6650A00A91C93 /* RecordingTypeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFE29A6650A00A91C93 /* RecordingTypeTests.swift */; };
84
81
  F9875D3D29A6650A00A91C93 /* CallTypeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFF29A6650A00A91C93 /* CallTypeTests.swift */; };
85
82
  F9875D3E29A6650A00A91C93 /* RegionTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0029A6650A00A91C93 /* RegionTests.swift */; };
86
- F9875D3F29A6650A00A91C93 /* AudioCallOptions+BandyerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0129A6650A00A91C93 /* AudioCallOptions+BandyerTests.swift */; };
83
+ F9875D3F29A6650A00A91C93 /* AudioCallOptions+KaleyraVideoSDKTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0129A6650A00A91C93 /* AudioCallOptions+KaleyraVideoSDKTests.swift */; };
87
84
  F9875D4029A6650A00A91C93 /* DispatchQueue+isMainTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0329A6650A00A91C93 /* DispatchQueue+isMainTests.swift */; };
88
85
  F9875D4129A6650A00A91C93 /* MainQueueDispatcherTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0429A6650A00A91C93 /* MainQueueDispatcherTests.swift */; };
89
- F9875D4229A6650A00A91C93 /* PushTokenEventsReporterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0729A6650A00A91C93 /* PushTokenEventsReporterTests.swift */; };
90
86
  F9875D4329A6650A00A91C93 /* ChatClientEventsReporterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0829A6650A00A91C93 /* ChatClientEventsReporterTests.swift */; };
91
87
  F9875D4429A6650A00A91C93 /* CallClientEventsReporterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0929A6650A00A91C93 /* CallClientEventsReporterTests.swift */; };
92
88
  F9875D4529A6650A00A91C93 /* BroadcastConfigurationPlistReaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0B29A6650A00A91C93 /* BroadcastConfigurationPlistReaderTests.swift */; };
93
89
  F9875D4729A6650A00A91C93 /* UsersDetailsCacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0F29A6650A00A91C93 /* UsersDetailsCacheTests.swift */; };
94
90
  F9875D4829A6650A00A91C93 /* UsersDetailsProviderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1129A6650A00A91C93 /* UsersDetailsProviderTests.swift */; };
95
- F9875D4929A6650A00A91C93 /* FormatterProxyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1329A6650A00A91C93 /* FormatterProxyTests.swift */; };
96
- F9875D4A29A6650A00A91C93 /* UserDetailsFormatterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1429A6650A00A91C93 /* UserDetailsFormatterTests.swift */; };
97
- F9875D4C29A6650A00A91C93 /* ChatClientStub.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1829A6650A00A91C93 /* ChatClientStub.swift */; };
98
- F9875D4D29A6650A00A91C93 /* CallClientStub.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1929A6650A00A91C93 /* CallClientStub.swift */; };
91
+ F9875D4C29A6650A00A91C93 /* ConversationStub.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1829A6650A00A91C93 /* ConversationStub.swift */; };
99
92
  F9875D4E29A6650A00A91C93 /* EventEmitterDoubles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1A29A6650A00A91C93 /* EventEmitterDoubles.swift */; };
100
93
  F9875D4F29A6650A00A91C93 /* BoolMatchers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1C29A6650A00A91C93 /* BoolMatchers.swift */; };
101
94
  F9875D5029A6650A00A91C93 /* UserDetailsFixtureFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1D29A6650A00A91C93 /* UserDetailsFixtureFactory.swift */; };
@@ -123,8 +116,8 @@
123
116
  F9B6BD3829C8C2C7009BF24B /* PresentingViewControllerViewControllerPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6BD3729C8C2C7009BF24B /* PresentingViewControllerViewControllerPresenter.swift */; };
124
117
  F9B6BD3A29C8C2E1009BF24B /* PresentingViewControllerViewControllerPresenterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6BD3929C8C2E1009BF24B /* PresentingViewControllerViewControllerPresenterTests.swift */; };
125
118
  F9B6BD3C29C8C4BD009BF24B /* ViewControllerSpy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6BD3B29C8C4BD009BF24B /* ViewControllerSpy.swift */; };
126
- F9B7E59929E5602800AB9208 /* CallOptions+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E59829E5602800AB9208 /* CallOptions+Bandyer.swift */; };
127
- F9B7E59B29E5604500AB9208 /* CallOptions+BandyerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E59A29E5604500AB9208 /* CallOptions+BandyerTests.swift */; };
119
+ F9B7E59929E5602800AB9208 /* CallOptions+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E59829E5602800AB9208 /* CallOptions+KaleyraVideoSDK.swift */; };
120
+ F9B7E59B29E5604500AB9208 /* CallOptions+KaleyraVideoSDKTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E59A29E5604500AB9208 /* CallOptions+KaleyraVideoSDKTests.swift */; };
128
121
  F9B7E59D29E5657B00AB9208 /* AudioCallOptions+Equatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E59C29E5657B00AB9208 /* AudioCallOptions+Equatable.swift */; };
129
122
  F9B7E59F29E565A900AB9208 /* CallOptions+Equatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E59E29E565A900AB9208 /* CallOptions+Equatable.swift */; };
130
123
  F9B7E5A129E5663900AB9208 /* AudioCallOptions+EquatableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E5A029E5663900AB9208 /* AudioCallOptions+EquatableTests.swift */; };
@@ -136,15 +129,14 @@
136
129
  F9BEA4C02A7A9F940066988B /* AtomicTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9BEA4BF2A7A9F940066988B /* AtomicTests.swift */; };
137
130
  F9BEA4C22A7A9FA60066988B /* Atomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9BEA4C12A7A9FA60066988B /* Atomic.swift */; };
138
131
  F9C6F96629DDBB610094DB30 /* CallDoubles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9C6F96529DDBB610094DB30 /* CallDoubles.swift */; };
139
- F9C6F96829DDBD980094DB30 /* CallRegistryDoubles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9C6F96729DDBD980094DB30 /* CallRegistryDoubles.swift */; };
140
132
  F9DEA4DA29E83C840011D222 /* MainQueueRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9DEA4D929E83C840011D222 /* MainQueueRelay.swift */; };
141
133
  F9DEA4DC29E83F400011D222 /* MainQueueRelayTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9DEA4DB29E83F400011D222 /* MainQueueRelayTests.swift */; };
142
134
  F9F2F2362A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F2F2332A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift */; };
143
135
  F9F2F2372A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F2F2342A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift */; };
144
- F9F2F2382A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift */; };
136
+ F9F2F2382A3A047D0066B6FF /* KaleyraVideoConfiguration+KaleyraVideoSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+KaleyraVideoSDK.swift */; };
145
137
  F9F7EFD429D592D500328400 /* VideoHybridNativeBridgeError.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFD329D592D500328400 /* VideoHybridNativeBridgeError.swift */; };
146
138
  F9F7EFD729D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFD629D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift */; };
147
- F9F7EFD929D5993300328400 /* BandyerSDKProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFD829D5993300328400 /* BandyerSDKProtocol.swift */; };
139
+ F9F7EFD929D5993300328400 /* KaleyraVideoSDKProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFD829D5993300328400 /* KaleyraVideoSDKProtocol.swift */; };
148
140
  F9F7EFDB29D59C5D00328400 /* VideoHybridNativeBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFDA29D59C5D00328400 /* VideoHybridNativeBridge.swift */; };
149
141
  F9F7EFDD29D5C02800328400 /* EventsReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFDC29D5C02800328400 /* EventsReporter.swift */; };
150
142
  F9F7EFDF29D5C0BB00328400 /* EventsReporterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFDE29D5C0BB00328400 /* EventsReporterTests.swift */; };
@@ -171,13 +163,15 @@
171
163
  8AFE6A0D76614CF3A1055AFB /* Pods-KaleyraVideoHybridNativeBridge.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KaleyraVideoHybridNativeBridge.debug.xcconfig"; path = "Target Support Files/Pods-KaleyraVideoHybridNativeBridge/Pods-KaleyraVideoHybridNativeBridge.debug.xcconfig"; sourceTree = "<group>"; };
172
164
  9FDA74BAD258248FC14F9BB1 /* Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.debug.xcconfig"; path = "Target Support Files/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.debug.xcconfig"; sourceTree = "<group>"; };
173
165
  B73D5754EF9B7B724563F429 /* Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.release.xcconfig"; path = "Target Support Files/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.release.xcconfig"; sourceTree = "<group>"; };
166
+ F92FB5E22CE262BA0028D419 /* ConferenceStub.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConferenceStub.swift; sourceTree = "<group>"; };
174
167
  F931C8AE29DECE2400194E1D /* URL+FromString.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URL+FromString.swift"; sourceTree = "<group>"; };
175
168
  F931C8B129DECF7600194E1D /* URL+FromStringTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URL+FromStringTests.swift"; sourceTree = "<group>"; };
176
169
  F931C8B329DEF24600194E1D /* KaleyraVideoSDKUserInterfacePresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KaleyraVideoSDKUserInterfacePresenter.swift; sourceTree = "<group>"; };
177
170
  F931C8B529DEF34300194E1D /* KaleyraVideoSDKUserInterfacePresenterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KaleyraVideoSDKUserInterfacePresenterTests.swift; sourceTree = "<group>"; };
178
- F931C8B729DEF54500194E1D /* BandyerSDKDoubles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BandyerSDKDoubles.swift; sourceTree = "<group>"; };
179
- F933A99B2A14E41D009B1773 /* KaleyraVideoConfiguration+BandyerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+BandyerTests.swift"; sourceTree = "<group>"; };
171
+ F931C8B729DEF54500194E1D /* KaleyraVideoSDKDoubles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KaleyraVideoSDKDoubles.swift; sourceTree = "<group>"; };
172
+ F933A99B2A14E41D009B1773 /* KaleyraVideoConfiguration+KaleyraVideoSDKTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+KaleyraVideoSDKTests.swift"; sourceTree = "<group>"; };
180
173
  F933A99D2A150E1E009B1773 /* FakePushCredentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FakePushCredentials.swift; sourceTree = "<group>"; };
174
+ F940C1B92CE7541E00E4E120 /* UserDetails+DecodableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserDetails+DecodableTests.swift"; sourceTree = "<group>"; };
181
175
  F9594D9029E842C700DD80A6 /* UserInterfacePresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfacePresenter.swift; sourceTree = "<group>"; };
182
176
  F967342229D2EE0800F9B914 /* AccessTokenRequester.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccessTokenRequester.swift; sourceTree = "<group>"; };
183
177
  F967342429D2EFE500F9B914 /* TokenProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TokenProvider.swift; sourceTree = "<group>"; };
@@ -193,72 +187,63 @@
193
187
  F9875C8629A663B200A91C93 /* Locking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Locking.swift; sourceTree = "<group>"; };
194
188
  F9875C8729A663B200A91C93 /* DispatchQueue+isMain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+isMain.swift"; sourceTree = "<group>"; };
195
189
  F9875C8929A663B200A91C93 /* DTOs.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DTOs.swift; sourceTree = "<group>"; };
196
- F9875C8A29A663B200A91C93 /* CallType+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallType+Bandyer.swift"; sourceTree = "<group>"; };
197
- F9875C8B29A663B200A91C93 /* Region+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Region+Bandyer.swift"; sourceTree = "<group>"; };
190
+ F9875C8A29A663B200A91C93 /* CallType+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallType+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
191
+ F9875C8B29A663B200A91C93 /* Region+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Region+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
198
192
  F9875C8C29A663B200A91C93 /* CallOptions+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallOptions+Decodable.swift"; sourceTree = "<group>"; };
199
193
  F9875C8D29A663B200A91C93 /* CreateCallOptions+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+Decodable.swift"; sourceTree = "<group>"; };
200
194
  F9875C8E29A663B200A91C93 /* CallType+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallType+Decodable.swift"; sourceTree = "<group>"; };
201
195
  F9875C8F29A663B200A91C93 /* CallKitConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallKitConfiguration+Decodable.swift"; sourceTree = "<group>"; };
202
196
  F9875C9029A663B200A91C93 /* Environment+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Environment+Decodable.swift"; sourceTree = "<group>"; };
203
- F9875C9129A663B200A91C93 /* Environment+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Environment+Bandyer.swift"; sourceTree = "<group>"; };
197
+ F9875C9129A663B200A91C93 /* Environment+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Environment+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
204
198
  F9875C9229A663B200A91C93 /* IosConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "IosConfiguration+Decodable.swift"; sourceTree = "<group>"; };
205
199
  F9875C9329A663B200A91C93 /* VoipHandlingStrategy+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "VoipHandlingStrategy+Decodable.swift"; sourceTree = "<group>"; };
206
200
  F9875C9429A663B200A91C93 /* JSONDecodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONDecodable.swift; sourceTree = "<group>"; };
207
- F9875C9529A663B200A91C93 /* AudioCallType+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallType+Bandyer.swift"; sourceTree = "<group>"; };
208
- F9875C9629A663B200A91C93 /* CreateCallOptions+Intent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+Intent.swift"; sourceTree = "<group>"; };
201
+ F9875C9529A663B200A91C93 /* AudioCallType+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallType+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
202
+ F9875C9629A663B200A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
209
203
  F9875C9729A663B200A91C93 /* AudioCallOptions+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+Decodable.swift"; sourceTree = "<group>"; };
210
204
  F9875C9929A663B200A91C93 /* ChatToolConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "ChatToolConfiguration+Decodable.swift"; sourceTree = "<group>"; };
211
- F9875C9A29A663B200A91C93 /* AudioCallOptions+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+Bandyer.swift"; sourceTree = "<group>"; };
205
+ F9875C9A29A663B200A91C93 /* AudioCallOptions+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
212
206
  F9875C9C29A663B200A91C93 /* AccessTokenResponse+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AccessTokenResponse+Decodable.swift"; sourceTree = "<group>"; };
213
207
  F9875C9D29A663B200A91C93 /* AccessTokenRequest+Encodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AccessTokenRequest+Encodable.swift"; sourceTree = "<group>"; };
214
208
  F9875C9E29A663B200A91C93 /* UserDetails+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetails+Decodable.swift"; sourceTree = "<group>"; };
215
- F9875C9F29A663B200A91C93 /* RecordingType+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RecordingType+Bandyer.swift"; sourceTree = "<group>"; };
216
- F9875CA029A663B200A91C93 /* UserDetailsFormat+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetailsFormat+Decodable.swift"; sourceTree = "<group>"; };
209
+ F9875C9F29A663B200A91C93 /* RecordingType+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RecordingType+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
217
210
  F9875CA129A663B200A91C93 /* Region+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Region+Decodable.swift"; sourceTree = "<group>"; };
218
211
  F9875CA229A663B200A91C93 /* Tools+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Tools+Decodable.swift"; sourceTree = "<group>"; };
219
212
  F9875CA329A663B200A91C93 /* Array+JSON.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Array+JSON.swift"; sourceTree = "<group>"; };
220
213
  F9875CA429A663B200A91C93 /* ScreenShareToolConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "ScreenShareToolConfiguration+Decodable.swift"; sourceTree = "<group>"; };
221
214
  F9875CA529A663B200A91C93 /* AudioCallType+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallType+Decodable.swift"; sourceTree = "<group>"; };
222
- F9875CA629A663B200A91C93 /* UserDetails+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetails+Bandyer.swift"; sourceTree = "<group>"; };
215
+ F9875CA629A663B200A91C93 /* UserDetails+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetails+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
223
216
  F9875CA729A663B200A91C93 /* RecordingType+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RecordingType+Decodable.swift"; sourceTree = "<group>"; };
224
217
  F9875CAA29A663B200A91C93 /* EventEmitter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EventEmitter.swift; sourceTree = "<group>"; };
225
218
  F9875CAB29A663B200A91C93 /* Events+Description.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Events+Description.swift"; sourceTree = "<group>"; };
226
219
  F9875CAC29A663B200A91C93 /* Events.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Events.swift; sourceTree = "<group>"; };
227
- F9875CAE29A663B200A91C93 /* PushTokenEventsReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PushTokenEventsReporter.swift; sourceTree = "<group>"; };
228
220
  F9875CAF29A663B200A91C93 /* ChatClientEventsReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatClientEventsReporter.swift; sourceTree = "<group>"; };
229
221
  F9875CB029A663B200A91C93 /* CallClientEventsReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallClientEventsReporter.swift; sourceTree = "<group>"; };
230
222
  F9875CB129A663B200A91C93 /* ClientState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ClientState.swift; sourceTree = "<group>"; };
231
223
  F9875CB329A663B200A91C93 /* BroadcastConfigurationPlistReader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastConfigurationPlistReader.swift; sourceTree = "<group>"; };
232
224
  F9875CBB29A663B300A91C93 /* UsersDetailsCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UsersDetailsCache.swift; sourceTree = "<group>"; };
233
225
  F9875CBD29A663B300A91C93 /* UsersDetailsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UsersDetailsProvider.swift; sourceTree = "<group>"; };
234
- F9875CBF29A663B300A91C93 /* FormatterProxy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FormatterProxy.swift; sourceTree = "<group>"; };
235
- F9875CC029A663B300A91C93 /* UserDetailsFormatter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDetailsFormatter.swift; sourceTree = "<group>"; };
236
226
  F9875CF429A6650A00A91C93 /* CreateCallOptions+JSONTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+JSONTests.swift"; sourceTree = "<group>"; };
237
227
  F9875CF529A6650A00A91C93 /* IosConfiguration+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "IosConfiguration+DecodableTests.swift"; sourceTree = "<group>"; };
238
- F9875CF629A6650A00A91C93 /* CreateCallOptions+IntentTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+IntentTests.swift"; sourceTree = "<group>"; };
228
+ F9875CF629A6650A00A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
239
229
  F9875CF729A6650A00A91C93 /* Tools+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Tools+DecodableTests.swift"; sourceTree = "<group>"; };
240
230
  F9875CF829A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+DecodableTests.swift"; sourceTree = "<group>"; };
241
231
  F9875CF929A6650A00A91C93 /* EnvironmentTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnvironmentTests.swift; sourceTree = "<group>"; };
242
232
  F9875CFA29A6650A00A91C93 /* CreateCallOptions+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+DecodableTests.swift"; sourceTree = "<group>"; };
243
- F9875CFB29A6650A00A91C93 /* UserDetailsFormat+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetailsFormat+DecodableTests.swift"; sourceTree = "<group>"; };
244
233
  F9875CFC29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AccessTokenRequest+EncodableTests.swift"; sourceTree = "<group>"; };
245
234
  F9875CFD29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AccessTokenResponse+DecodableTests.swift"; sourceTree = "<group>"; };
246
235
  F9875CFE29A6650A00A91C93 /* RecordingTypeTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RecordingTypeTests.swift; sourceTree = "<group>"; };
247
236
  F9875CFF29A6650A00A91C93 /* CallTypeTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallTypeTests.swift; sourceTree = "<group>"; };
248
237
  F9875D0029A6650A00A91C93 /* RegionTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RegionTests.swift; sourceTree = "<group>"; };
249
- F9875D0129A6650A00A91C93 /* AudioCallOptions+BandyerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+BandyerTests.swift"; sourceTree = "<group>"; };
238
+ F9875D0129A6650A00A91C93 /* AudioCallOptions+KaleyraVideoSDKTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+KaleyraVideoSDKTests.swift"; sourceTree = "<group>"; };
250
239
  F9875D0329A6650A00A91C93 /* DispatchQueue+isMainTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+isMainTests.swift"; sourceTree = "<group>"; };
251
240
  F9875D0429A6650A00A91C93 /* MainQueueDispatcherTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainQueueDispatcherTests.swift; sourceTree = "<group>"; };
252
- F9875D0729A6650A00A91C93 /* PushTokenEventsReporterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PushTokenEventsReporterTests.swift; sourceTree = "<group>"; };
253
241
  F9875D0829A6650A00A91C93 /* ChatClientEventsReporterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatClientEventsReporterTests.swift; sourceTree = "<group>"; };
254
242
  F9875D0929A6650A00A91C93 /* CallClientEventsReporterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallClientEventsReporterTests.swift; sourceTree = "<group>"; };
255
243
  F9875D0B29A6650A00A91C93 /* BroadcastConfigurationPlistReaderTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastConfigurationPlistReaderTests.swift; sourceTree = "<group>"; };
256
244
  F9875D0F29A6650A00A91C93 /* UsersDetailsCacheTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UsersDetailsCacheTests.swift; sourceTree = "<group>"; };
257
245
  F9875D1129A6650A00A91C93 /* UsersDetailsProviderTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UsersDetailsProviderTests.swift; sourceTree = "<group>"; };
258
- F9875D1329A6650A00A91C93 /* FormatterProxyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FormatterProxyTests.swift; sourceTree = "<group>"; };
259
- F9875D1429A6650A00A91C93 /* UserDetailsFormatterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDetailsFormatterTests.swift; sourceTree = "<group>"; };
260
- F9875D1829A6650A00A91C93 /* ChatClientStub.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatClientStub.swift; sourceTree = "<group>"; };
261
- F9875D1929A6650A00A91C93 /* CallClientStub.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallClientStub.swift; sourceTree = "<group>"; };
246
+ F9875D1829A6650A00A91C93 /* ConversationStub.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConversationStub.swift; sourceTree = "<group>"; };
262
247
  F9875D1A29A6650A00A91C93 /* EventEmitterDoubles.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EventEmitterDoubles.swift; sourceTree = "<group>"; };
263
248
  F9875D1C29A6650A00A91C93 /* BoolMatchers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BoolMatchers.swift; sourceTree = "<group>"; };
264
249
  F9875D1D29A6650A00A91C93 /* UserDetailsFixtureFactory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDetailsFixtureFactory.swift; sourceTree = "<group>"; };
@@ -286,8 +271,8 @@
286
271
  F9B6BD3729C8C2C7009BF24B /* PresentingViewControllerViewControllerPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PresentingViewControllerViewControllerPresenter.swift; sourceTree = "<group>"; };
287
272
  F9B6BD3929C8C2E1009BF24B /* PresentingViewControllerViewControllerPresenterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PresentingViewControllerViewControllerPresenterTests.swift; sourceTree = "<group>"; };
288
273
  F9B6BD3B29C8C4BD009BF24B /* ViewControllerSpy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewControllerSpy.swift; sourceTree = "<group>"; };
289
- F9B7E59829E5602800AB9208 /* CallOptions+Bandyer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+Bandyer.swift"; sourceTree = "<group>"; };
290
- F9B7E59A29E5604500AB9208 /* CallOptions+BandyerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+BandyerTests.swift"; sourceTree = "<group>"; };
274
+ F9B7E59829E5602800AB9208 /* CallOptions+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
275
+ F9B7E59A29E5604500AB9208 /* CallOptions+KaleyraVideoSDKTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+KaleyraVideoSDKTests.swift"; sourceTree = "<group>"; };
291
276
  F9B7E59C29E5657B00AB9208 /* AudioCallOptions+Equatable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+Equatable.swift"; sourceTree = "<group>"; };
292
277
  F9B7E59E29E565A900AB9208 /* CallOptions+Equatable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+Equatable.swift"; sourceTree = "<group>"; };
293
278
  F9B7E5A029E5663900AB9208 /* AudioCallOptions+EquatableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+EquatableTests.swift"; sourceTree = "<group>"; };
@@ -299,15 +284,14 @@
299
284
  F9BEA4BF2A7A9F940066988B /* AtomicTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicTests.swift; sourceTree = "<group>"; };
300
285
  F9BEA4C12A7A9FA60066988B /* Atomic.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Atomic.swift; sourceTree = "<group>"; };
301
286
  F9C6F96529DDBB610094DB30 /* CallDoubles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallDoubles.swift; sourceTree = "<group>"; };
302
- F9C6F96729DDBD980094DB30 /* CallRegistryDoubles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallRegistryDoubles.swift; sourceTree = "<group>"; };
303
287
  F9DEA4D929E83C840011D222 /* MainQueueRelay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainQueueRelay.swift; sourceTree = "<group>"; };
304
288
  F9DEA4DB29E83F400011D222 /* MainQueueRelayTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainQueueRelayTests.swift; sourceTree = "<group>"; };
305
289
  F9F2F2332A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+Decodable.swift"; sourceTree = "<group>"; };
306
290
  F9F2F2342A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift"; sourceTree = "<group>"; };
307
- F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+Bandyer.swift"; sourceTree = "<group>"; };
291
+ F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+KaleyraVideoSDK.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+KaleyraVideoSDK.swift"; sourceTree = "<group>"; };
308
292
  F9F7EFD329D592D500328400 /* VideoHybridNativeBridgeError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoHybridNativeBridgeError.swift; sourceTree = "<group>"; };
309
293
  F9F7EFD629D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoHybridNativeBridgeErrorTests.swift; sourceTree = "<group>"; };
310
- F9F7EFD829D5993300328400 /* BandyerSDKProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BandyerSDKProtocol.swift; sourceTree = "<group>"; };
294
+ F9F7EFD829D5993300328400 /* KaleyraVideoSDKProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KaleyraVideoSDKProtocol.swift; sourceTree = "<group>"; };
311
295
  F9F7EFDA29D59C5D00328400 /* VideoHybridNativeBridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoHybridNativeBridge.swift; sourceTree = "<group>"; };
312
296
  F9F7EFDC29D5C02800328400 /* EventsReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventsReporter.swift; sourceTree = "<group>"; };
313
297
  F9F7EFDE29D5C0BB00328400 /* EventsReporterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventsReporterTests.swift; sourceTree = "<group>"; };
@@ -456,41 +440,40 @@
456
440
  F9875C8829A663B200A91C93 /* DTOs */ = {
457
441
  isa = PBXGroup;
458
442
  children = (
459
- F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift */,
443
+ F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+KaleyraVideoSDK.swift */,
460
444
  F9F2F2332A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift */,
461
445
  F9F2F2342A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift */,
462
446
  F9875C9D29A663B200A91C93 /* AccessTokenRequest+Encodable.swift */,
463
447
  F9875C9C29A663B200A91C93 /* AccessTokenResponse+Decodable.swift */,
464
448
  F9875CA329A663B200A91C93 /* Array+JSON.swift */,
465
- F9875C9A29A663B200A91C93 /* AudioCallOptions+Bandyer.swift */,
449
+ F9875C9A29A663B200A91C93 /* AudioCallOptions+KaleyraVideoSDK.swift */,
466
450
  F9875C9729A663B200A91C93 /* AudioCallOptions+Decodable.swift */,
467
451
  F9B7E59C29E5657B00AB9208 /* AudioCallOptions+Equatable.swift */,
468
- F9875C9529A663B200A91C93 /* AudioCallType+Bandyer.swift */,
452
+ F9875C9529A663B200A91C93 /* AudioCallType+KaleyraVideoSDK.swift */,
469
453
  F9875CA529A663B200A91C93 /* AudioCallType+Decodable.swift */,
470
454
  F9875C8F29A663B200A91C93 /* CallKitConfiguration+Decodable.swift */,
471
- F9B7E59829E5602800AB9208 /* CallOptions+Bandyer.swift */,
455
+ F9B7E59829E5602800AB9208 /* CallOptions+KaleyraVideoSDK.swift */,
472
456
  F9875C8C29A663B200A91C93 /* CallOptions+Decodable.swift */,
473
457
  F9B7E59E29E565A900AB9208 /* CallOptions+Equatable.swift */,
474
- F9875C8A29A663B200A91C93 /* CallType+Bandyer.swift */,
458
+ F9875C8A29A663B200A91C93 /* CallType+KaleyraVideoSDK.swift */,
475
459
  F9875C8E29A663B200A91C93 /* CallType+Decodable.swift */,
476
460
  F9875C9929A663B200A91C93 /* ChatToolConfiguration+Decodable.swift */,
477
461
  F9875C8D29A663B200A91C93 /* CreateCallOptions+Decodable.swift */,
478
462
  F9B7E5A829E5912700AB9208 /* CreateCallOptions+Equatable.swift */,
479
- F9875C9629A663B200A91C93 /* CreateCallOptions+Intent.swift */,
463
+ F9875C9629A663B200A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift */,
480
464
  F9875C8929A663B200A91C93 /* DTOs.swift */,
481
- F9875C9129A663B200A91C93 /* Environment+Bandyer.swift */,
465
+ F9875C9129A663B200A91C93 /* Environment+KaleyraVideoSDK.swift */,
482
466
  F9875C9029A663B200A91C93 /* Environment+Decodable.swift */,
483
467
  F9875C9229A663B200A91C93 /* IosConfiguration+Decodable.swift */,
484
468
  F9875C9429A663B200A91C93 /* JSONDecodable.swift */,
485
- F9875C9F29A663B200A91C93 /* RecordingType+Bandyer.swift */,
469
+ F9875C9F29A663B200A91C93 /* RecordingType+KaleyraVideoSDK.swift */,
486
470
  F9875CA729A663B200A91C93 /* RecordingType+Decodable.swift */,
487
- F9875C8B29A663B200A91C93 /* Region+Bandyer.swift */,
471
+ F9875C8B29A663B200A91C93 /* Region+KaleyraVideoSDK.swift */,
488
472
  F9875CA129A663B200A91C93 /* Region+Decodable.swift */,
489
473
  F9875CA429A663B200A91C93 /* ScreenShareToolConfiguration+Decodable.swift */,
490
474
  F9875CA229A663B200A91C93 /* Tools+Decodable.swift */,
491
- F9875CA629A663B200A91C93 /* UserDetails+Bandyer.swift */,
475
+ F9875CA629A663B200A91C93 /* UserDetails+KaleyraVideoSDK.swift */,
492
476
  F9875C9E29A663B200A91C93 /* UserDetails+Decodable.swift */,
493
- F9875CA029A663B200A91C93 /* UserDetailsFormat+Decodable.swift */,
494
477
  F9875C9329A663B200A91C93 /* VoipHandlingStrategy+Decodable.swift */,
495
478
  );
496
479
  path = DTOs;
@@ -523,7 +506,6 @@
523
506
  F9875CAF29A663B200A91C93 /* ChatClientEventsReporter.swift */,
524
507
  F9875CB129A663B200A91C93 /* ClientState.swift */,
525
508
  F9F7EFDC29D5C02800328400 /* EventsReporter.swift */,
526
- F9875CAE29A663B200A91C93 /* PushTokenEventsReporter.swift */,
527
509
  );
528
510
  path = Reporters;
529
511
  sourceTree = "<group>";
@@ -552,7 +534,6 @@
552
534
  children = (
553
535
  F9875CBA29A663B300A91C93 /* Cache */,
554
536
  F9875CBC29A663B300A91C93 /* Providers */,
555
- F9875CBE29A663B300A91C93 /* Formatter */,
556
537
  );
557
538
  path = "User Details";
558
539
  sourceTree = "<group>";
@@ -573,15 +554,6 @@
573
554
  path = Providers;
574
555
  sourceTree = "<group>";
575
556
  };
576
- F9875CBE29A663B300A91C93 /* Formatter */ = {
577
- isa = PBXGroup;
578
- children = (
579
- F9875CBF29A663B300A91C93 /* FormatterProxy.swift */,
580
- F9875CC029A663B300A91C93 /* UserDetailsFormatter.swift */,
581
- );
582
- path = Formatter;
583
- sourceTree = "<group>";
584
- };
585
557
  F9875CF229A6650A00A91C93 /* Unit Tests */ = {
586
558
  isa = PBXGroup;
587
559
  children = (
@@ -603,24 +575,24 @@
603
575
  children = (
604
576
  F9875CFC29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift */,
605
577
  F9875CFD29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift */,
606
- F9875D0129A6650A00A91C93 /* AudioCallOptions+BandyerTests.swift */,
607
578
  F9B7E5A029E5663900AB9208 /* AudioCallOptions+EquatableTests.swift */,
608
- F933A99B2A14E41D009B1773 /* KaleyraVideoConfiguration+BandyerTests.swift */,
609
- F9875CF829A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift */,
610
- F9B7E5A629E5888E00AB9208 /* KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift */,
611
- F9B7E59A29E5604500AB9208 /* CallOptions+BandyerTests.swift */,
579
+ F9875D0129A6650A00A91C93 /* AudioCallOptions+KaleyraVideoSDKTests.swift */,
612
580
  F9B7E5A229E5666000AB9208 /* CallOptions+EquatableTests.swift */,
581
+ F9B7E59A29E5604500AB9208 /* CallOptions+KaleyraVideoSDKTests.swift */,
613
582
  F9875CFF29A6650A00A91C93 /* CallTypeTests.swift */,
614
583
  F9875CFA29A6650A00A91C93 /* CreateCallOptions+DecodableTests.swift */,
615
584
  F9B7E5AA29E5913E00AB9208 /* CreateCallOptions+EquatableTests.swift */,
616
- F9875CF629A6650A00A91C93 /* CreateCallOptions+IntentTests.swift */,
617
585
  F9875CF429A6650A00A91C93 /* CreateCallOptions+JSONTests.swift */,
586
+ F9875CF629A6650A00A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift */,
618
587
  F9875CF929A6650A00A91C93 /* EnvironmentTests.swift */,
619
588
  F9875CF529A6650A00A91C93 /* IosConfiguration+DecodableTests.swift */,
589
+ F9875CF829A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift */,
590
+ F933A99B2A14E41D009B1773 /* KaleyraVideoConfiguration+KaleyraVideoSDKTests.swift */,
591
+ F9B7E5A629E5888E00AB9208 /* KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift */,
620
592
  F9875CFE29A6650A00A91C93 /* RecordingTypeTests.swift */,
621
593
  F9875D0029A6650A00A91C93 /* RegionTests.swift */,
622
594
  F9875CF729A6650A00A91C93 /* Tools+DecodableTests.swift */,
623
- F9875CFB29A6650A00A91C93 /* UserDetailsFormat+DecodableTests.swift */,
595
+ F940C1B92CE7541E00E4E120 /* UserDetails+DecodableTests.swift */,
624
596
  );
625
597
  path = DTOs;
626
598
  sourceTree = "<group>";
@@ -651,7 +623,6 @@
651
623
  F9875D0929A6650A00A91C93 /* CallClientEventsReporterTests.swift */,
652
624
  F9875D0829A6650A00A91C93 /* ChatClientEventsReporterTests.swift */,
653
625
  F9F7EFDE29D5C0BB00328400 /* EventsReporterTests.swift */,
654
- F9875D0729A6650A00A91C93 /* PushTokenEventsReporterTests.swift */,
655
626
  );
656
627
  path = Reporters;
657
628
  sourceTree = "<group>";
@@ -669,7 +640,6 @@
669
640
  children = (
670
641
  F9875D0E29A6650A00A91C93 /* Cache */,
671
642
  F9875D1029A6650A00A91C93 /* Providers */,
672
- F9875D1229A6650A00A91C93 /* Formatter */,
673
643
  );
674
644
  path = "User Details";
675
645
  sourceTree = "<group>";
@@ -690,27 +660,17 @@
690
660
  path = Providers;
691
661
  sourceTree = "<group>";
692
662
  };
693
- F9875D1229A6650A00A91C93 /* Formatter */ = {
694
- isa = PBXGroup;
695
- children = (
696
- F9875D1329A6650A00A91C93 /* FormatterProxyTests.swift */,
697
- F9875D1429A6650A00A91C93 /* UserDetailsFormatterTests.swift */,
698
- );
699
- path = Formatter;
700
- sourceTree = "<group>";
701
- };
702
663
  F9875D1729A6650A00A91C93 /* Doubles */ = {
703
664
  isa = PBXGroup;
704
665
  children = (
705
- F9875D1929A6650A00A91C93 /* CallClientStub.swift */,
666
+ F931C8B729DEF54500194E1D /* KaleyraVideoSDKDoubles.swift */,
706
667
  F9C6F96529DDBB610094DB30 /* CallDoubles.swift */,
707
- F9C6F96729DDBD980094DB30 /* CallRegistryDoubles.swift */,
708
- F9875D1829A6650A00A91C93 /* ChatClientStub.swift */,
668
+ F92FB5E22CE262BA0028D419 /* ConferenceStub.swift */,
669
+ F9875D1829A6650A00A91C93 /* ConversationStub.swift */,
709
670
  F9875D1A29A6650A00A91C93 /* EventEmitterDoubles.swift */,
710
- F9B6BD3B29C8C4BD009BF24B /* ViewControllerSpy.swift */,
711
- F931C8B729DEF54500194E1D /* BandyerSDKDoubles.swift */,
712
- F96C93FA29E84501004FA995 /* UserInterfacePresenterSpy.swift */,
713
671
  F933A99D2A150E1E009B1773 /* FakePushCredentials.swift */,
672
+ F96C93FA29E84501004FA995 /* UserInterfacePresenterSpy.swift */,
673
+ F9B6BD3B29C8C4BD009BF24B /* ViewControllerSpy.swift */,
714
674
  );
715
675
  path = Doubles;
716
676
  sourceTree = "<group>";
@@ -790,7 +750,7 @@
790
750
  F9B7E5AC29E5A4A100AB9208 /* Abstractions */ = {
791
751
  isa = PBXGroup;
792
752
  children = (
793
- F9F7EFD829D5993300328400 /* BandyerSDKProtocol.swift */,
753
+ F9F7EFD829D5993300328400 /* KaleyraVideoSDKProtocol.swift */,
794
754
  F9B7E5AD29E5A4BA00AB9208 /* CallWindowProtocol.swift */,
795
755
  );
796
756
  path = Abstractions;
@@ -1007,10 +967,9 @@
1007
967
  F9875CC329A663B300A91C93 /* DispatchQueue+isMain.swift in Sources */,
1008
968
  F9875CE729A663B300A91C93 /* ChatClientEventsReporter.swift in Sources */,
1009
969
  F9BEA4C22A7A9FA60066988B /* Atomic.swift in Sources */,
1010
- F9B7E59929E5602800AB9208 /* CallOptions+Bandyer.swift in Sources */,
970
+ F9B7E59929E5602800AB9208 /* CallOptions+KaleyraVideoSDK.swift in Sources */,
1011
971
  F967342529D2EFE500F9B914 /* TokenProvider.swift in Sources */,
1012
972
  F9875CDE29A663B300A91C93 /* Array+JSON.swift in Sources */,
1013
- F9875CDB29A663B300A91C93 /* UserDetailsFormat+Decodable.swift in Sources */,
1014
973
  F9875CE529A663B300A91C93 /* Events.swift in Sources */,
1015
974
  F9875CDD29A663B300A91C93 /* Tools+Decodable.swift in Sources */,
1016
975
  F9875CDC29A663B300A91C93 /* Region+Decodable.swift in Sources */,
@@ -1018,7 +977,7 @@
1018
977
  F9B7E59F29E565A900AB9208 /* CallOptions+Equatable.swift in Sources */,
1019
978
  F9875CE029A663B300A91C93 /* AudioCallType+Decodable.swift in Sources */,
1020
979
  F9875CCD29A663B300A91C93 /* IosConfiguration+Decodable.swift in Sources */,
1021
- F9875CCC29A663B300A91C93 /* Environment+Bandyer.swift in Sources */,
980
+ F9875CCC29A663B300A91C93 /* Environment+KaleyraVideoSDK.swift in Sources */,
1022
981
  F9B6BD3229C882B5009BF24B /* WindowViewControllerPresenter.swift in Sources */,
1023
982
  F9875CCA29A663B300A91C93 /* CallKitConfiguration+Decodable.swift in Sources */,
1024
983
  F9F2F2362A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift in Sources */,
@@ -1029,11 +988,10 @@
1029
988
  F9875CC929A663B300A91C93 /* CallType+Decodable.swift in Sources */,
1030
989
  F9875CD729A663B300A91C93 /* AccessTokenResponse+Decodable.swift in Sources */,
1031
990
  F9DEA4DA29E83C840011D222 /* MainQueueRelay.swift in Sources */,
1032
- F9875CD029A663B300A91C93 /* AudioCallType+Bandyer.swift in Sources */,
1033
- F9875CE129A663B300A91C93 /* UserDetails+Bandyer.swift in Sources */,
991
+ F9875CD029A663B300A91C93 /* AudioCallType+KaleyraVideoSDK.swift in Sources */,
992
+ F9875CE129A663B300A91C93 /* UserDetails+KaleyraVideoSDK.swift in Sources */,
1034
993
  F9875CE929A663B300A91C93 /* ClientState.swift in Sources */,
1035
- F9875CE629A663B300A91C93 /* PushTokenEventsReporter.swift in Sources */,
1036
- F9875CD529A663B300A91C93 /* AudioCallOptions+Bandyer.swift in Sources */,
994
+ F9875CD529A663B300A91C93 /* AudioCallOptions+KaleyraVideoSDK.swift in Sources */,
1037
995
  F9875CD429A663B300A91C93 /* ChatToolConfiguration+Decodable.swift in Sources */,
1038
996
  F9B7E59D29E5657B00AB9208 /* AudioCallOptions+Equatable.swift in Sources */,
1039
997
  F9F7EFD429D592D500328400 /* VideoHybridNativeBridgeError.swift in Sources */,
@@ -1047,29 +1005,27 @@
1047
1005
  F9875CC829A663B300A91C93 /* CreateCallOptions+Decodable.swift in Sources */,
1048
1006
  F9875CE429A663B300A91C93 /* Events+Description.swift in Sources */,
1049
1007
  F9FE390A29D1C71B00EC304C /* Events+CaseIterable.swift in Sources */,
1050
- F9F7EFD929D5993300328400 /* BandyerSDKProtocol.swift in Sources */,
1008
+ F9F7EFD929D5993300328400 /* KaleyraVideoSDKProtocol.swift in Sources */,
1051
1009
  F9875CD929A663B300A91C93 /* UserDetails+Decodable.swift in Sources */,
1052
1010
  F9875CE829A663B300A91C93 /* CallClientEventsReporter.swift in Sources */,
1053
1011
  F9F2F2372A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift in Sources */,
1054
1012
  F9875CCE29A663B300A91C93 /* VoipHandlingStrategy+Decodable.swift in Sources */,
1055
- F9875CC529A663B300A91C93 /* CallType+Bandyer.swift in Sources */,
1013
+ F9875CC529A663B300A91C93 /* CallType+KaleyraVideoSDK.swift in Sources */,
1056
1014
  F9875CC729A663B300A91C93 /* CallOptions+Decodable.swift in Sources */,
1057
- F9875CF029A663B300A91C93 /* FormatterProxy.swift in Sources */,
1058
- F9F2F2382A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift in Sources */,
1015
+ F9F2F2382A3A047D0066B6FF /* KaleyraVideoConfiguration+KaleyraVideoSDK.swift in Sources */,
1059
1016
  F9875CD229A663B300A91C93 /* AudioCallOptions+Decodable.swift in Sources */,
1060
1017
  F931C8AF29DECE2400194E1D /* URL+FromString.swift in Sources */,
1061
1018
  F9875CEF29A663B300A91C93 /* UsersDetailsProvider.swift in Sources */,
1062
1019
  F9875CE329A663B300A91C93 /* EventEmitter.swift in Sources */,
1063
- F9875CC629A663B300A91C93 /* Region+Bandyer.swift in Sources */,
1020
+ F9875CC629A663B300A91C93 /* Region+KaleyraVideoSDK.swift in Sources */,
1064
1021
  F9875CCB29A663B300A91C93 /* Environment+Decodable.swift in Sources */,
1065
- F9875CF129A663B300A91C93 /* UserDetailsFormatter.swift in Sources */,
1066
1022
  F9B7E5AE29E5A4BA00AB9208 /* CallWindowProtocol.swift in Sources */,
1067
1023
  F9F7EFDD29D5C02800328400 /* EventsReporter.swift in Sources */,
1068
1024
  F9875CC129A663B300A91C93 /* MainQueueDispatcher.swift in Sources */,
1069
1025
  F9875CEE29A663B300A91C93 /* UsersDetailsCache.swift in Sources */,
1070
- F9875CD129A663B300A91C93 /* CreateCallOptions+Intent.swift in Sources */,
1026
+ F9875CD129A663B300A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift in Sources */,
1071
1027
  F9875CC429A663B300A91C93 /* DTOs.swift in Sources */,
1072
- F9875CDA29A663B300A91C93 /* RecordingType+Bandyer.swift in Sources */,
1028
+ F9875CDA29A663B300A91C93 /* RecordingType+KaleyraVideoSDK.swift in Sources */,
1073
1029
  );
1074
1030
  runOnlyForDeploymentPostprocessing = 0;
1075
1031
  };
@@ -1085,9 +1041,7 @@
1085
1041
  F9875D5429A6650A00A91C93 /* CompletionSpy.swift in Sources */,
1086
1042
  F9875D4329A6650A00A91C93 /* ChatClientEventsReporterTests.swift in Sources */,
1087
1043
  F9875D5629A6650A00A91C93 /* Weak.swift in Sources */,
1088
- F9875D3929A6650A00A91C93 /* UserDetailsFormat+DecodableTests.swift in Sources */,
1089
- F9C6F96829DDBD980094DB30 /* CallRegistryDoubles.swift in Sources */,
1090
- F9875D4C29A6650A00A91C93 /* ChatClientStub.swift in Sources */,
1044
+ F9875D4C29A6650A00A91C93 /* ConversationStub.swift in Sources */,
1091
1045
  F96C93FB29E84501004FA995 /* UserInterfacePresenterSpy.swift in Sources */,
1092
1046
  F9875D5129A6650A00A91C93 /* JSONDecodingTestsCase.swift in Sources */,
1093
1047
  F9875D3329A6650A00A91C93 /* IosConfiguration+DecodableTests.swift in Sources */,
@@ -1098,13 +1052,15 @@
1098
1052
  F9B7E5AB29E5913E00AB9208 /* CreateCallOptions+EquatableTests.swift in Sources */,
1099
1053
  F9875D4F29A6650A00A91C93 /* BoolMatchers.swift in Sources */,
1100
1054
  F931C8B629DEF34300194E1D /* KaleyraVideoSDKUserInterfacePresenterTests.swift in Sources */,
1055
+ F92FB5E32CE262BA0028D419 /* ConferenceStub.swift in Sources */,
1101
1056
  F9875D4029A6650A00A91C93 /* DispatchQueue+isMainTests.swift in Sources */,
1102
1057
  F9875D5029A6650A00A91C93 /* UserDetailsFixtureFactory.swift in Sources */,
1103
1058
  F9875D3229A6650A00A91C93 /* CreateCallOptions+JSONTests.swift in Sources */,
1104
1059
  F9875D4429A6650A00A91C93 /* CallClientEventsReporterTests.swift in Sources */,
1060
+ F940C1BA2CE7541E00E4E120 /* UserDetails+DecodableTests.swift in Sources */,
1105
1061
  F9875D3829A6650A00A91C93 /* CreateCallOptions+DecodableTests.swift in Sources */,
1106
1062
  F9F7EFDF29D5C0BB00328400 /* EventsReporterTests.swift in Sources */,
1107
- F9875D3429A6650A00A91C93 /* CreateCallOptions+IntentTests.swift in Sources */,
1063
+ F9875D3429A6650A00A91C93 /* CreateCallOptions+KaleyraVideoSDK.swift in Sources */,
1108
1064
  F9B7E5A129E5663900AB9208 /* AudioCallOptions+EquatableTests.swift in Sources */,
1109
1065
  F9875D5329A6650A00A91C93 /* TestHelpers.swift in Sources */,
1110
1066
  F9BEA4C02A7A9F940066988B /* AtomicTests.swift in Sources */,
@@ -1112,21 +1068,17 @@
1112
1068
  F9B7E5A729E5888E00AB9208 /* KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift in Sources */,
1113
1069
  F9875D3E29A6650A00A91C93 /* RegionTests.swift in Sources */,
1114
1070
  F9875D5229A6650A00A91C93 /* String+PushTokenData.swift in Sources */,
1115
- F9B7E59B29E5604500AB9208 /* CallOptions+BandyerTests.swift in Sources */,
1071
+ F9B7E59B29E5604500AB9208 /* CallOptions+KaleyraVideoSDKTests.swift in Sources */,
1116
1072
  F9875D3629A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift in Sources */,
1117
- F9875D4A29A6650A00A91C93 /* UserDetailsFormatterTests.swift in Sources */,
1118
1073
  F9875D3B29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift in Sources */,
1119
1074
  F967342A29D2F56D00F9B914 /* ResultMatchers.swift in Sources */,
1120
- F9875D4929A6650A00A91C93 /* FormatterProxyTests.swift in Sources */,
1121
- F933A99C2A14E41D009B1773 /* KaleyraVideoConfiguration+BandyerTests.swift in Sources */,
1122
- F9875D3F29A6650A00A91C93 /* AudioCallOptions+BandyerTests.swift in Sources */,
1123
- F931C8B829DEF54500194E1D /* BandyerSDKDoubles.swift in Sources */,
1075
+ F933A99C2A14E41D009B1773 /* KaleyraVideoConfiguration+KaleyraVideoSDKTests.swift in Sources */,
1076
+ F9875D3F29A6650A00A91C93 /* AudioCallOptions+KaleyraVideoSDKTests.swift in Sources */,
1077
+ F931C8B829DEF54500194E1D /* KaleyraVideoSDKDoubles.swift in Sources */,
1124
1078
  F9875D4E29A6650A00A91C93 /* EventEmitterDoubles.swift in Sources */,
1125
1079
  F9C6F96629DDBB610094DB30 /* CallDoubles.swift in Sources */,
1126
1080
  F9875D3529A6650A00A91C93 /* Tools+DecodableTests.swift in Sources */,
1127
1081
  F9F7EFD729D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift in Sources */,
1128
- F9875D4D29A6650A00A91C93 /* CallClientStub.swift in Sources */,
1129
- F9875D4229A6650A00A91C93 /* PushTokenEventsReporterTests.swift in Sources */,
1130
1082
  F9B6BD3C29C8C4BD009BF24B /* ViewControllerSpy.swift in Sources */,
1131
1083
  F9DEA4DC29E83F400011D222 /* MainQueueRelayTests.swift in Sources */,
1132
1084
  F9875D3729A6650A00A91C93 /* EnvironmentTests.swift in Sources */,
@@ -1287,7 +1239,7 @@
1287
1239
  GENERATE_INFOPLIST_FILE = YES;
1288
1240
  INFOPLIST_KEY_NSHumanReadableCopyright = "";
1289
1241
  INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1290
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1242
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
1291
1243
  LD_RUNPATH_SEARCH_PATHS = (
1292
1244
  "$(inherited)",
1293
1245
  "@executable_path/Frameworks",
@@ -1317,7 +1269,7 @@
1317
1269
  GENERATE_INFOPLIST_FILE = YES;
1318
1270
  INFOPLIST_KEY_NSHumanReadableCopyright = "";
1319
1271
  INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1320
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1272
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
1321
1273
  LD_RUNPATH_SEARCH_PATHS = (
1322
1274
  "$(inherited)",
1323
1275
  "@executable_path/Frameworks",
@@ -1342,7 +1294,7 @@
1342
1294
  CURRENT_PROJECT_VERSION = 1;
1343
1295
  DEVELOPMENT_TEAM = TQ49746752;
1344
1296
  GENERATE_INFOPLIST_FILE = YES;
1345
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1297
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
1346
1298
  MARKETING_VERSION = 1.0;
1347
1299
  PRODUCT_BUNDLE_IDENTIFIER = com.kaleyra.VideoHybidNativeBridgeTests;
1348
1300
  PRODUCT_NAME = "$(TARGET_NAME)";
@@ -1361,7 +1313,7 @@
1361
1313
  CURRENT_PROJECT_VERSION = 1;
1362
1314
  DEVELOPMENT_TEAM = TQ49746752;
1363
1315
  GENERATE_INFOPLIST_FILE = YES;
1364
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1316
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
1365
1317
  MARKETING_VERSION = 1.0;
1366
1318
  PRODUCT_BUNDLE_IDENTIFIER = com.kaleyra.VideoHybidNativeBridgeTests;
1367
1319
  PRODUCT_NAME = "$(TARGET_NAME)";