@kaleyra/video-react-native-module 1.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 (271) hide show
  1. package/LICENSE +165 -0
  2. package/README.md +292 -0
  3. package/android/build.gradle +100 -0
  4. package/android/gradle.properties +9 -0
  5. package/android/settings.gradle +6 -0
  6. package/android/src/main/AndroidManifest.xml +1 -0
  7. package/android/src/main/assets/kaleyra_video_wrapper_info.txt +1 -0
  8. package/android/src/main/java/com/kaleyra/video_react_native_module/ReactNativeAccessTokenProvider.kt +22 -0
  9. package/android/src/main/java/com/kaleyra/video_react_native_module/ReactNativeContextContainer.kt +9 -0
  10. package/android/src/main/java/com/kaleyra/video_react_native_module/ReactNativeVideoHybridBridge.kt +30 -0
  11. package/android/src/main/java/com/kaleyra/video_react_native_module/VideoNativeEmitter.kt +45 -0
  12. package/android/src/main/java/com/kaleyra/video_react_native_module/VideoNativeModule.kt +109 -0
  13. package/android/src/main/java/com/kaleyra/video_react_native_module/VideoReactPackage.kt +20 -0
  14. package/index.ts +47 -0
  15. package/ios/PluginInfo/_KaleyraVideoHybridVersionInfo.swift +31 -0
  16. package/ios/ReactEvents/ReactNativeEventEmitter.swift +31 -0
  17. package/ios/ReactEvents/VideoNativeEmitter.m +17 -0
  18. package/ios/ReactEvents/VideoNativeEmitter.swift +42 -0
  19. package/ios/ReactNativePlugin-Bridging-Header.h +5 -0
  20. package/ios/ReactNativePlugin.xcodeproj/project.pbxproj +301 -0
  21. package/ios/VideoNativeModule.m +45 -0
  22. package/ios/VideoNativeModule.swift +154 -0
  23. package/lib/commonjs/index.js +12 -0
  24. package/lib/commonjs/native-bridge/TypeScript/Environments.js +41 -0
  25. package/lib/commonjs/native-bridge/TypeScript/Events.js +46 -0
  26. package/lib/commonjs/native-bridge/TypeScript/Regions.js +47 -0
  27. package/lib/commonjs/native-bridge/TypeScript/UserDetailsFormatValidator.js +32 -0
  28. package/lib/commonjs/native-bridge/TypeScript/errors/IllegalArgumentError.js +12 -0
  29. package/lib/commonjs/native-bridge/TypeScript/types/AccessTokenRequest.js +4 -0
  30. package/lib/commonjs/native-bridge/TypeScript/types/AccessTokenResponse.js +36 -0
  31. package/lib/commonjs/native-bridge/TypeScript/types/AudioCallOptions.js +4 -0
  32. package/lib/commonjs/native-bridge/TypeScript/types/AudioCallType.js +19 -0
  33. package/lib/commonjs/native-bridge/TypeScript/types/CallDisplayMode.js +23 -0
  34. package/lib/commonjs/native-bridge/TypeScript/types/CallKitConfiguration.js +4 -0
  35. package/lib/commonjs/native-bridge/TypeScript/types/CallOptions.js +4 -0
  36. package/lib/commonjs/native-bridge/TypeScript/types/CallType.js +23 -0
  37. package/lib/commonjs/native-bridge/TypeScript/types/ChatToolConfiguration.js +4 -0
  38. package/lib/commonjs/native-bridge/TypeScript/types/CreateCallOptions.js +4 -0
  39. package/lib/commonjs/native-bridge/TypeScript/types/Environment.js +4 -0
  40. package/lib/commonjs/native-bridge/TypeScript/types/IosConfiguration.js +4 -0
  41. package/lib/commonjs/native-bridge/TypeScript/types/KaleyraVideoConfiguration.js +4 -0
  42. package/lib/commonjs/native-bridge/TypeScript/types/RecordingType.js +23 -0
  43. package/lib/commonjs/native-bridge/TypeScript/types/Region.js +4 -0
  44. package/lib/commonjs/native-bridge/TypeScript/types/ScreenShareToolConfiguration.js +4 -0
  45. package/lib/commonjs/native-bridge/TypeScript/types/Session.js +4 -0
  46. package/lib/commonjs/native-bridge/TypeScript/types/Tools.js +4 -0
  47. package/lib/commonjs/native-bridge/TypeScript/types/UserDetails.js +4 -0
  48. package/lib/commonjs/native-bridge/TypeScript/types/UserDetailsFormat.js +4 -0
  49. package/lib/commonjs/native-bridge/TypeScript/types/VoipHandlingStrategy.js +19 -0
  50. package/lib/commonjs/src/KaleyraVideo.js +259 -0
  51. package/lib/commonjs/src/ReactNativeEventEmitter.js +40 -0
  52. package/lib/commonjs/src/events/Events.js +4 -0
  53. package/lib/module/index.js +2 -0
  54. package/lib/module/native-bridge/TypeScript/Environments.js +37 -0
  55. package/lib/module/native-bridge/TypeScript/Events.js +43 -0
  56. package/lib/module/native-bridge/TypeScript/Regions.js +43 -0
  57. package/lib/module/native-bridge/TypeScript/UserDetailsFormatValidator.js +28 -0
  58. package/lib/module/native-bridge/TypeScript/errors/IllegalArgumentError.js +8 -0
  59. package/lib/module/native-bridge/TypeScript/types/AccessTokenRequest.js +3 -0
  60. package/lib/module/native-bridge/TypeScript/types/AccessTokenResponse.js +32 -0
  61. package/lib/module/native-bridge/TypeScript/types/AudioCallOptions.js +3 -0
  62. package/lib/module/native-bridge/TypeScript/types/AudioCallType.js +16 -0
  63. package/lib/module/native-bridge/TypeScript/types/CallDisplayMode.js +20 -0
  64. package/lib/module/native-bridge/TypeScript/types/CallKitConfiguration.js +3 -0
  65. package/lib/module/native-bridge/TypeScript/types/CallOptions.js +3 -0
  66. package/lib/module/native-bridge/TypeScript/types/CallType.js +20 -0
  67. package/lib/module/native-bridge/TypeScript/types/ChatToolConfiguration.js +3 -0
  68. package/lib/module/native-bridge/TypeScript/types/CreateCallOptions.js +3 -0
  69. package/lib/module/native-bridge/TypeScript/types/Environment.js +3 -0
  70. package/lib/module/native-bridge/TypeScript/types/IosConfiguration.js +3 -0
  71. package/lib/module/native-bridge/TypeScript/types/KaleyraVideoConfiguration.js +3 -0
  72. package/lib/module/native-bridge/TypeScript/types/RecordingType.js +20 -0
  73. package/lib/module/native-bridge/TypeScript/types/Region.js +3 -0
  74. package/lib/module/native-bridge/TypeScript/types/ScreenShareToolConfiguration.js +3 -0
  75. package/lib/module/native-bridge/TypeScript/types/Session.js +3 -0
  76. package/lib/module/native-bridge/TypeScript/types/Tools.js +3 -0
  77. package/lib/module/native-bridge/TypeScript/types/UserDetails.js +3 -0
  78. package/lib/module/native-bridge/TypeScript/types/UserDetailsFormat.js +3 -0
  79. package/lib/module/native-bridge/TypeScript/types/VoipHandlingStrategy.js +16 -0
  80. package/lib/module/src/KaleyraVideo.js +249 -0
  81. package/lib/module/src/ReactNativeEventEmitter.js +36 -0
  82. package/lib/module/src/events/Events.js +3 -0
  83. package/lib/typescript/index.d.ts +2 -0
  84. package/lib/typescript/native-bridge/TypeScript/Environments.d.ts +28 -0
  85. package/lib/typescript/native-bridge/TypeScript/Events.d.ts +40 -0
  86. package/lib/typescript/native-bridge/TypeScript/Regions.d.ts +32 -0
  87. package/lib/typescript/native-bridge/TypeScript/UserDetailsFormatValidator.d.ts +4 -0
  88. package/lib/typescript/native-bridge/TypeScript/errors/IllegalArgumentError.d.ts +6 -0
  89. package/lib/typescript/native-bridge/TypeScript/types/AccessTokenRequest.d.ts +4 -0
  90. package/lib/typescript/native-bridge/TypeScript/types/AccessTokenResponse.d.ts +12 -0
  91. package/lib/typescript/native-bridge/TypeScript/types/AudioCallOptions.d.ts +11 -0
  92. package/lib/typescript/native-bridge/TypeScript/types/AudioCallType.d.ts +13 -0
  93. package/lib/typescript/native-bridge/TypeScript/types/CallDisplayMode.d.ts +17 -0
  94. package/lib/typescript/native-bridge/TypeScript/types/CallKitConfiguration.d.ts +26 -0
  95. package/lib/typescript/native-bridge/TypeScript/types/CallOptions.d.ts +13 -0
  96. package/lib/typescript/native-bridge/TypeScript/types/CallType.d.ts +17 -0
  97. package/lib/typescript/native-bridge/TypeScript/types/ChatToolConfiguration.d.ts +15 -0
  98. package/lib/typescript/native-bridge/TypeScript/types/CreateCallOptions.d.ts +15 -0
  99. package/lib/typescript/native-bridge/TypeScript/types/Environment.d.ts +9 -0
  100. package/lib/typescript/native-bridge/TypeScript/types/IosConfiguration.d.ts +23 -0
  101. package/lib/typescript/native-bridge/TypeScript/types/KaleyraVideoConfiguration.d.ts +33 -0
  102. package/lib/typescript/native-bridge/TypeScript/types/RecordingType.d.ts +17 -0
  103. package/lib/typescript/native-bridge/TypeScript/types/Region.d.ts +9 -0
  104. package/lib/typescript/native-bridge/TypeScript/types/ScreenShareToolConfiguration.d.ts +19 -0
  105. package/lib/typescript/native-bridge/TypeScript/types/Session.d.ts +16 -0
  106. package/lib/typescript/native-bridge/TypeScript/types/Tools.d.ts +42 -0
  107. package/lib/typescript/native-bridge/TypeScript/types/UserDetails.d.ts +29 -0
  108. package/lib/typescript/native-bridge/TypeScript/types/UserDetailsFormat.d.ts +19 -0
  109. package/lib/typescript/native-bridge/TypeScript/types/VoipHandlingStrategy.d.ts +13 -0
  110. package/lib/typescript/src/KaleyraVideo.d.ts +125 -0
  111. package/lib/typescript/src/ReactNativeEventEmitter.d.ts +15 -0
  112. package/lib/typescript/src/events/Events.d.ts +37 -0
  113. package/native-bridge/LICENSE +165 -0
  114. package/native-bridge/TypeScript/Environments.ts +44 -0
  115. package/native-bridge/TypeScript/Events.ts +43 -0
  116. package/native-bridge/TypeScript/Regions.ts +51 -0
  117. package/native-bridge/TypeScript/UserDetailsFormatValidator.ts +35 -0
  118. package/native-bridge/TypeScript/errors/IllegalArgumentError.ts +9 -0
  119. package/native-bridge/TypeScript/types/AccessTokenRequest.ts +7 -0
  120. package/native-bridge/TypeScript/types/AccessTokenResponse.ts +41 -0
  121. package/native-bridge/TypeScript/types/AudioCallOptions.ts +15 -0
  122. package/native-bridge/TypeScript/types/AudioCallType.ts +17 -0
  123. package/native-bridge/TypeScript/types/CallDisplayMode.ts +22 -0
  124. package/native-bridge/TypeScript/types/CallKitConfiguration.ts +32 -0
  125. package/native-bridge/TypeScript/types/CallOptions.ts +18 -0
  126. package/native-bridge/TypeScript/types/CallType.ts +22 -0
  127. package/native-bridge/TypeScript/types/ChatToolConfiguration.ts +21 -0
  128. package/native-bridge/TypeScript/types/CreateCallOptions.ts +20 -0
  129. package/native-bridge/TypeScript/types/Environment.ts +12 -0
  130. package/native-bridge/TypeScript/types/IosConfiguration.ts +29 -0
  131. package/native-bridge/TypeScript/types/KaleyraVideoConfiguration.ts +42 -0
  132. package/native-bridge/TypeScript/types/RecordingType.ts +22 -0
  133. package/native-bridge/TypeScript/types/Region.ts +12 -0
  134. package/native-bridge/TypeScript/types/ScreenShareToolConfiguration.ts +24 -0
  135. package/native-bridge/TypeScript/types/Session.ts +20 -0
  136. package/native-bridge/TypeScript/types/Tools.ts +50 -0
  137. package/native-bridge/TypeScript/types/UserDetails.ts +37 -0
  138. package/native-bridge/TypeScript/types/UserDetailsFormat.ts +23 -0
  139. package/native-bridge/TypeScript/types/VoipHandlingStrategy.ts +17 -0
  140. package/native-bridge/android/build.gradle +72 -0
  141. package/native-bridge/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  142. package/native-bridge/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  143. package/native-bridge/android/gradle.properties +22 -0
  144. package/native-bridge/android/gradlew +234 -0
  145. package/native-bridge/android/gradlew.bat +89 -0
  146. package/native-bridge/android/settings.gradle +1 -0
  147. package/native-bridge/android/src/main/AndroidManifest.xml +1 -0
  148. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/AccessTokenProvider.kt +8 -0
  149. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/CallOptionsProxy.kt +9 -0
  150. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/ContextContainer.kt +10 -0
  151. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/DTOs.kt +407 -0
  152. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/SDKAccessTokenProviderProxy.kt +16 -0
  153. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/VideoHybridBridge.kt +21 -0
  154. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/VideoSDKHybridBridge.kt +64 -0
  155. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/configurator/CachedSDKConfigurator.kt +15 -0
  156. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/configurator/VideoSDKConfigurator.kt +46 -0
  157. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/connector/CachedUserConnector.kt +15 -0
  158. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/connector/VideoSDKCachedUserConnector.kt +60 -0
  159. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/Events.kt +29 -0
  160. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/EventsEmitter.kt +8 -0
  161. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/EventsReporter.kt +9 -0
  162. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/CallEventsReporter.kt +54 -0
  163. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/ChatEventsReporter.kt +43 -0
  164. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/CrossPlatformModuleStatus.kt +29 -0
  165. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/ModuleEventsReporter.kt +34 -0
  166. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/events/reporter/SDKEventsReporter.kt +63 -0
  167. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/CallDisplayExtension.kt +15 -0
  168. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/ConfigurationExtension.kt +39 -0
  169. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/EnvironmentExtension.kt +12 -0
  170. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/RecordingTypeExtension.kt +15 -0
  171. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/RegionExtension.kt +13 -0
  172. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/ScreenShareToolConfigurationExtension.kt +15 -0
  173. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/ToolsExtension.kt +95 -0
  174. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/extensions/UserExtensions.kt +35 -0
  175. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/notifications/KaleyraVideoNotificationReceiver.kt +139 -0
  176. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/notifications/KaleyraVideoNotificationService.kt +85 -0
  177. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/ConfigurationEntity.kt +27 -0
  178. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/ConnectedUserEntity.kt +30 -0
  179. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/Converters.kt +25 -0
  180. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/UserDetailsDao.kt +21 -0
  181. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/UserDetailsEntity.kt +22 -0
  182. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/repository/VideoHybridBridgeRepository.kt +39 -0
  183. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/ui/SDKUserInterfacePresenter.kt +49 -0
  184. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/ui/UserInterfacePresenter.kt +14 -0
  185. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/user_details/CachedUserDetails.kt +18 -0
  186. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/user_details/CachedUserDetailsFormatter.kt +59 -0
  187. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/user_details/SDKCachedUserDetails.kt +74 -0
  188. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/utils/CaseInsensitiveEnumTypeAdapterFactory.kt +48 -0
  189. package/native-bridge/android/src/main/java/com/kaleyra/video_hybrid_native_bridge/utils/TLSSocketFactoryCompat.kt +76 -0
  190. package/native-bridge/iOS/KaleyraVideoHybridNativeBridge.xcodeproj/project.pbxproj +1399 -0
  191. package/native-bridge/iOS/KaleyraVideoHybridNativeBridge.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  192. package/native-bridge/iOS/KaleyraVideoHybridNativeBridge.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  193. package/native-bridge/iOS/KaleyraVideoHybridNativeBridge.xcodeproj/xcshareddata/IDETemplateMacros.plist +9 -0
  194. package/native-bridge/iOS/KaleyraVideoHybridNativeBridge.xcodeproj/xcshareddata/xcschemes/KaleyraVideoHybridNativeBridge.xcscheme +79 -0
  195. package/native-bridge/iOS/KaleyraVideoHybridNativeBridge.xcworkspace/contents.xcworkspacedata +10 -0
  196. package/native-bridge/iOS/KaleyraVideoHybridNativeBridge.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  197. package/native-bridge/iOS/Podfile +28 -0
  198. package/native-bridge/iOS/Podfile.lock +20 -0
  199. package/native-bridge/iOS/Source/Abstractions/BandyerSDKProtocol.swift +24 -0
  200. package/native-bridge/iOS/Source/Abstractions/CallWindowProtocol.swift +18 -0
  201. package/native-bridge/iOS/Source/AccessToken/AccessTokenRequester.swift +9 -0
  202. package/native-bridge/iOS/Source/AccessToken/TokenProvider.swift +78 -0
  203. package/native-bridge/iOS/Source/Broadcast/BroadcastConfigurationPlistReader.swift +49 -0
  204. package/native-bridge/iOS/Source/Concurrency/DispatchQueue+isMain.swift +19 -0
  205. package/native-bridge/iOS/Source/Concurrency/Lock.swift +21 -0
  206. package/native-bridge/iOS/Source/Concurrency/MainQueueDispatcher.swift +23 -0
  207. package/native-bridge/iOS/Source/Concurrency/MainQueueRelay.swift +18 -0
  208. package/native-bridge/iOS/Source/DTOs/AccessTokenRequest+Encodable.swift +27 -0
  209. package/native-bridge/iOS/Source/DTOs/AccessTokenResponse+Decodable.swift +24 -0
  210. package/native-bridge/iOS/Source/DTOs/Array+JSON.swift +6 -0
  211. package/native-bridge/iOS/Source/DTOs/AudioCallOptions+Bandyer.swift +14 -0
  212. package/native-bridge/iOS/Source/DTOs/AudioCallOptions+Decodable.swift +18 -0
  213. package/native-bridge/iOS/Source/DTOs/AudioCallOptions+Equatable.swift +12 -0
  214. package/native-bridge/iOS/Source/DTOs/AudioCallType+Bandyer.swift +18 -0
  215. package/native-bridge/iOS/Source/DTOs/AudioCallType+Decodable.swift +25 -0
  216. package/native-bridge/iOS/Source/DTOs/CallKitConfiguration+Decodable.swift +20 -0
  217. package/native-bridge/iOS/Source/DTOs/CallOptions+Bandyer.swift +14 -0
  218. package/native-bridge/iOS/Source/DTOs/CallOptions+Decodable.swift +16 -0
  219. package/native-bridge/iOS/Source/DTOs/CallOptions+Equatable.swift +12 -0
  220. package/native-bridge/iOS/Source/DTOs/CallType+Bandyer.swift +20 -0
  221. package/native-bridge/iOS/Source/DTOs/CallType+Decodable.swift +27 -0
  222. package/native-bridge/iOS/Source/DTOs/ChatToolConfiguration+Decodable.swift +18 -0
  223. package/native-bridge/iOS/Source/DTOs/CreateCallOptions+Decodable.swift +22 -0
  224. package/native-bridge/iOS/Source/DTOs/CreateCallOptions+Equatable.swift +13 -0
  225. package/native-bridge/iOS/Source/DTOs/CreateCallOptions+Intent.swift +17 -0
  226. package/native-bridge/iOS/Source/DTOs/DTOs.swift +314 -0
  227. package/native-bridge/iOS/Source/DTOs/Environment+Bandyer.swift +20 -0
  228. package/native-bridge/iOS/Source/DTOs/Environment+Decodable.swift +16 -0
  229. package/native-bridge/iOS/Source/DTOs/IosConfiguration+Decodable.swift +18 -0
  230. package/native-bridge/iOS/Source/DTOs/JSONDecodable.swift +27 -0
  231. package/native-bridge/iOS/Source/DTOs/KaleyraVideoConfiguration+Bandyer.swift +158 -0
  232. package/native-bridge/iOS/Source/DTOs/KaleyraVideoConfiguration+Decodable.swift +28 -0
  233. package/native-bridge/iOS/Source/DTOs/KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift +29 -0
  234. package/native-bridge/iOS/Source/DTOs/RecordingType+Bandyer.swift +33 -0
  235. package/native-bridge/iOS/Source/DTOs/RecordingType+Decodable.swift +27 -0
  236. package/native-bridge/iOS/Source/DTOs/Region+Bandyer.swift +22 -0
  237. package/native-bridge/iOS/Source/DTOs/Region+Decodable.swift +16 -0
  238. package/native-bridge/iOS/Source/DTOs/ScreenShareToolConfiguration+Decodable.swift +18 -0
  239. package/native-bridge/iOS/Source/DTOs/Tools+Decodable.swift +24 -0
  240. package/native-bridge/iOS/Source/DTOs/UserDetails+Bandyer.swift +18 -0
  241. package/native-bridge/iOS/Source/DTOs/UserDetails+Decodable.swift +28 -0
  242. package/native-bridge/iOS/Source/DTOs/UserDetailsFormat+Decodable.swift +19 -0
  243. package/native-bridge/iOS/Source/DTOs/VoipHandlingStrategy+Decodable.swift +25 -0
  244. package/native-bridge/iOS/Source/Events/Emitter/EventEmitter.swift +8 -0
  245. package/native-bridge/iOS/Source/Events/Events+CaseIterable.swift +18 -0
  246. package/native-bridge/iOS/Source/Events/Events+Description.swift +28 -0
  247. package/native-bridge/iOS/Source/Events/Events.swift +21 -0
  248. package/native-bridge/iOS/Source/Events/Reporters/CallClientEventsReporter.swift +46 -0
  249. package/native-bridge/iOS/Source/Events/Reporters/ChatClientEventsReporter.swift +46 -0
  250. package/native-bridge/iOS/Source/Events/Reporters/ClientState.swift +61 -0
  251. package/native-bridge/iOS/Source/Events/Reporters/EventsReporter.swift +69 -0
  252. package/native-bridge/iOS/Source/Events/Reporters/PushTokenEventsReporter.swift +34 -0
  253. package/native-bridge/iOS/Source/Extensions/URL+FromString.swift +26 -0
  254. package/native-bridge/iOS/Source/KaleyraVideoHybridNativeBridge.h +14 -0
  255. package/native-bridge/iOS/Source/NativeHybridBridge/VideoHybridNativeBridge.swift +173 -0
  256. package/native-bridge/iOS/Source/NativeHybridBridge/VideoHybridNativeBridgeError.swift +33 -0
  257. package/native-bridge/iOS/Source/UI/KaleyraVideoSDKUserInterfacePresenter.swift +249 -0
  258. package/native-bridge/iOS/Source/UI/Presenters/PresentingViewControllerViewControllerPresenter.swift +44 -0
  259. package/native-bridge/iOS/Source/UI/Presenters/ViewControllerPresenter.swift +17 -0
  260. package/native-bridge/iOS/Source/UI/Presenters/WindowViewControllerPresenter.swift +111 -0
  261. package/native-bridge/iOS/Source/UI/UserInterfacePresenter+MainQueueRelay.swift +30 -0
  262. package/native-bridge/iOS/Source/UI/UserInterfacePresenter.swift +14 -0
  263. package/native-bridge/iOS/Source/User Details/Cache/UsersDetailsCache.swift +36 -0
  264. package/native-bridge/iOS/Source/User Details/Formatter/FormatterProxy.swift +47 -0
  265. package/native-bridge/iOS/Source/User Details/Formatter/UserDetailsFormatter.swift +83 -0
  266. package/native-bridge/iOS/Source/User Details/Providers/UsersDetailsProvider.swift +39 -0
  267. package/package.json +147 -0
  268. package/src/KaleyraVideo.ts +343 -0
  269. package/src/ReactNativeEventEmitter.ts +51 -0
  270. package/src/events/Events.ts +46 -0
  271. package/video-react-native-module.podspec +36 -0
@@ -0,0 +1,1399 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 56;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 2B02758D547CD158CD0323B4 /* Pods_KaleyraVideoHybridNativeBridge.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DF8359579961024B3EFBCA2D /* Pods_KaleyraVideoHybridNativeBridge.framework */; };
11
+ 6CAC870A6BDFEA0054DF5578 /* Pods_KaleyraVideoHybridNativeBridge_KaleyraVideoHybridNativeBridgeTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E96C905FFBA0F1343AD217EF /* Pods_KaleyraVideoHybridNativeBridge_KaleyraVideoHybridNativeBridgeTests.framework */; };
12
+ F931C8AF29DECE2400194E1D /* URL+FromString.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8AE29DECE2400194E1D /* URL+FromString.swift */; };
13
+ F931C8B229DECF7600194E1D /* URL+FromStringTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8B129DECF7600194E1D /* URL+FromStringTests.swift */; };
14
+ F931C8B429DEF24600194E1D /* KaleyraVideoSDKUserInterfacePresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F931C8B329DEF24600194E1D /* KaleyraVideoSDKUserInterfacePresenter.swift */; };
15
+ 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 */; };
18
+ F933A99E2A150E1E009B1773 /* FakePushCredentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = F933A99D2A150E1E009B1773 /* FakePushCredentials.swift */; };
19
+ F9594D9129E842C700DD80A6 /* UserInterfacePresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9594D9029E842C700DD80A6 /* UserInterfacePresenter.swift */; };
20
+ F967342329D2EE0900F9B914 /* AccessTokenRequester.swift in Sources */ = {isa = PBXBuildFile; fileRef = F967342229D2EE0800F9B914 /* AccessTokenRequester.swift */; };
21
+ F967342529D2EFE500F9B914 /* TokenProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F967342429D2EFE500F9B914 /* TokenProvider.swift */; };
22
+ F967342829D2F00300F9B914 /* TokenProviderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F967342729D2F00300F9B914 /* TokenProviderTests.swift */; };
23
+ F967342A29D2F56D00F9B914 /* ResultMatchers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F967342929D2F56D00F9B914 /* ResultMatchers.swift */; };
24
+ F96C93F729E8442F004FA995 /* UserInterfacePresenter+MainQueueRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = F96C93F629E8442F004FA995 /* UserInterfacePresenter+MainQueueRelay.swift */; };
25
+ F96C93F929E84491004FA995 /* UserInterfacePresenter+MainQueueRelayTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F96C93F829E84491004FA995 /* UserInterfacePresenter+MainQueueRelayTests.swift */; };
26
+ F96C93FB29E84501004FA995 /* UserInterfacePresenterSpy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F96C93FA29E84501004FA995 /* UserInterfacePresenterSpy.swift */; };
27
+ F9875C7529A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F9875C6C29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.framework */; };
28
+ F9875C7B29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = F9875C6F29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.h */; settings = {ATTRIBUTES = (Public, ); }; };
29
+ F9875CC129A663B300A91C93 /* MainQueueDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8529A663B200A91C93 /* MainQueueDispatcher.swift */; };
30
+ F9875CC229A663B300A91C93 /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8629A663B200A91C93 /* Lock.swift */; };
31
+ F9875CC329A663B300A91C93 /* DispatchQueue+isMain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8729A663B200A91C93 /* DispatchQueue+isMain.swift */; };
32
+ 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
+ F9875CC729A663B300A91C93 /* CallOptions+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8C29A663B200A91C93 /* CallOptions+Decodable.swift */; };
36
+ F9875CC829A663B300A91C93 /* CreateCallOptions+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8D29A663B200A91C93 /* CreateCallOptions+Decodable.swift */; };
37
+ F9875CC929A663B300A91C93 /* CallType+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8E29A663B200A91C93 /* CallType+Decodable.swift */; };
38
+ F9875CCA29A663B300A91C93 /* CallKitConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C8F29A663B200A91C93 /* CallKitConfiguration+Decodable.swift */; };
39
+ 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 */; };
41
+ F9875CCD29A663B300A91C93 /* IosConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9229A663B200A91C93 /* IosConfiguration+Decodable.swift */; };
42
+ F9875CCE29A663B300A91C93 /* VoipHandlingStrategy+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9329A663B200A91C93 /* VoipHandlingStrategy+Decodable.swift */; };
43
+ 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
+ F9875CD229A663B300A91C93 /* AudioCallOptions+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9729A663B200A91C93 /* AudioCallOptions+Decodable.swift */; };
47
+ 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 */; };
49
+ F9875CD729A663B300A91C93 /* AccessTokenResponse+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9C29A663B200A91C93 /* AccessTokenResponse+Decodable.swift */; };
50
+ F9875CD829A663B300A91C93 /* AccessTokenRequest+Encodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875C9D29A663B200A91C93 /* AccessTokenRequest+Encodable.swift */; };
51
+ 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
+ F9875CDC29A663B300A91C93 /* Region+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA129A663B200A91C93 /* Region+Decodable.swift */; };
55
+ F9875CDD29A663B300A91C93 /* Tools+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA229A663B200A91C93 /* Tools+Decodable.swift */; };
56
+ F9875CDE29A663B300A91C93 /* Array+JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA329A663B200A91C93 /* Array+JSON.swift */; };
57
+ F9875CDF29A663B300A91C93 /* ScreenShareToolConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA429A663B200A91C93 /* ScreenShareToolConfiguration+Decodable.swift */; };
58
+ 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
+ F9875CE229A663B300A91C93 /* RecordingType+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CA729A663B200A91C93 /* RecordingType+Decodable.swift */; };
61
+ F9875CE329A663B300A91C93 /* EventEmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAA29A663B200A91C93 /* EventEmitter.swift */; };
62
+ F9875CE429A663B300A91C93 /* Events+Description.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAB29A663B200A91C93 /* Events+Description.swift */; };
63
+ F9875CE529A663B300A91C93 /* Events.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAC29A663B200A91C93 /* Events.swift */; };
64
+ F9875CE629A663B300A91C93 /* PushTokenEventsReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAE29A663B200A91C93 /* PushTokenEventsReporter.swift */; };
65
+ F9875CE729A663B300A91C93 /* ChatClientEventsReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CAF29A663B200A91C93 /* ChatClientEventsReporter.swift */; };
66
+ F9875CE829A663B300A91C93 /* CallClientEventsReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CB029A663B200A91C93 /* CallClientEventsReporter.swift */; };
67
+ F9875CE929A663B300A91C93 /* ClientState.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CB129A663B200A91C93 /* ClientState.swift */; };
68
+ F9875CEA29A663B300A91C93 /* BroadcastConfigurationPlistReader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CB329A663B200A91C93 /* BroadcastConfigurationPlistReader.swift */; };
69
+ F9875CEE29A663B300A91C93 /* UsersDetailsCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CBB29A663B300A91C93 /* UsersDetailsCache.swift */; };
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
+ F9875D3229A6650A00A91C93 /* CreateCallOptions+JSONTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF429A6650A00A91C93 /* CreateCallOptions+JSONTests.swift */; };
74
+ 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 */; };
76
+ F9875D3529A6650A00A91C93 /* Tools+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF729A6650A00A91C93 /* Tools+DecodableTests.swift */; };
77
+ F9875D3629A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF829A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift */; };
78
+ F9875D3729A6650A00A91C93 /* EnvironmentTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CF929A6650A00A91C93 /* EnvironmentTests.swift */; };
79
+ 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
+ F9875D3A29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFC29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift */; };
82
+ F9875D3B29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFD29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift */; };
83
+ F9875D3C29A6650A00A91C93 /* RecordingTypeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFE29A6650A00A91C93 /* RecordingTypeTests.swift */; };
84
+ F9875D3D29A6650A00A91C93 /* CallTypeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875CFF29A6650A00A91C93 /* CallTypeTests.swift */; };
85
+ 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 */; };
87
+ F9875D4029A6650A00A91C93 /* DispatchQueue+isMainTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0329A6650A00A91C93 /* DispatchQueue+isMainTests.swift */; };
88
+ F9875D4129A6650A00A91C93 /* MainQueueDispatcherTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0429A6650A00A91C93 /* MainQueueDispatcherTests.swift */; };
89
+ F9875D4229A6650A00A91C93 /* PushTokenEventsReporterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0729A6650A00A91C93 /* PushTokenEventsReporterTests.swift */; };
90
+ F9875D4329A6650A00A91C93 /* ChatClientEventsReporterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0829A6650A00A91C93 /* ChatClientEventsReporterTests.swift */; };
91
+ F9875D4429A6650A00A91C93 /* CallClientEventsReporterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0929A6650A00A91C93 /* CallClientEventsReporterTests.swift */; };
92
+ F9875D4529A6650A00A91C93 /* BroadcastConfigurationPlistReaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0B29A6650A00A91C93 /* BroadcastConfigurationPlistReaderTests.swift */; };
93
+ F9875D4729A6650A00A91C93 /* UsersDetailsCacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D0F29A6650A00A91C93 /* UsersDetailsCacheTests.swift */; };
94
+ 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 */; };
99
+ F9875D4E29A6650A00A91C93 /* EventEmitterDoubles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1A29A6650A00A91C93 /* EventEmitterDoubles.swift */; };
100
+ F9875D4F29A6650A00A91C93 /* BoolMatchers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1C29A6650A00A91C93 /* BoolMatchers.swift */; };
101
+ F9875D5029A6650A00A91C93 /* UserDetailsFixtureFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1D29A6650A00A91C93 /* UserDetailsFixtureFactory.swift */; };
102
+ F9875D5129A6650A00A91C93 /* JSONDecodingTestsCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1E29A6650A00A91C93 /* JSONDecodingTestsCase.swift */; };
103
+ F9875D5229A6650A00A91C93 /* String+PushTokenData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D1F29A6650A00A91C93 /* String+PushTokenData.swift */; };
104
+ F9875D5329A6650A00A91C93 /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D2029A6650A00A91C93 /* TestHelpers.swift */; };
105
+ F9875D5429A6650A00A91C93 /* CompletionSpy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D2129A6650A00A91C93 /* CompletionSpy.swift */; };
106
+ F9875D5529A6650A00A91C93 /* Unwrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D2229A6650A00A91C93 /* Unwrap.swift */; };
107
+ F9875D5629A6650A00A91C93 /* Weak.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D2329A6650A00A91C93 /* Weak.swift */; };
108
+ F9875D5729A6650A00A91C93 /* UnitTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9875D2529A6650A00A91C93 /* UnitTestCase.swift */; };
109
+ F9875D5829A6650A00A91C93 /* valid_config.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2729A6650A00A91C93 /* valid_config.plist */; };
110
+ F9875D5929A6650A00A91C93 /* missing_group.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2829A6650A00A91C93 /* missing_group.plist */; };
111
+ F9875D5A29A6650A00A91C93 /* missing_broadcast.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2929A6650A00A91C93 /* missing_broadcast.plist */; };
112
+ F9875D5B29A6650A00A91C93 /* empty_extension_identifier.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2A29A6650A00A91C93 /* empty_extension_identifier.plist */; };
113
+ F9875D5C29A6650A00A91C93 /* mismatched_group.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2B29A6650A00A91C93 /* mismatched_group.plist */; };
114
+ F9875D5D29A6650A00A91C93 /* text.txt in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2C29A6650A00A91C93 /* text.txt */; };
115
+ F9875D5E29A6650A00A91C93 /* mismatched_extension_identifier.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2D29A6650A00A91C93 /* mismatched_extension_identifier.plist */; };
116
+ F9875D5F29A6650A00A91C93 /* empty_group.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2E29A6650A00A91C93 /* empty_group.plist */; };
117
+ F9875D6029A6650A00A91C93 /* missing_extension_identifier.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D2F29A6650A00A91C93 /* missing_extension_identifier.plist */; };
118
+ F9875D6129A6650A00A91C93 /* not_available_group_identifier.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D3029A6650A00A91C93 /* not_available_group_identifier.plist */; };
119
+ F9875D6229A6650A00A91C93 /* not_available_extension_identifier.plist in Resources */ = {isa = PBXBuildFile; fileRef = F9875D3129A6650A00A91C93 /* not_available_extension_identifier.plist */; };
120
+ F9B6BD3029C88157009BF24B /* ViewControllerPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6BD2F29C88157009BF24B /* ViewControllerPresenter.swift */; };
121
+ F9B6BD3229C882B5009BF24B /* WindowViewControllerPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6BD3129C882B5009BF24B /* WindowViewControllerPresenter.swift */; };
122
+ F9B6BD3629C882FA009BF24B /* WindowViewControllerPresenterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6BD3529C882FA009BF24B /* WindowViewControllerPresenterTests.swift */; };
123
+ F9B6BD3829C8C2C7009BF24B /* PresentingViewControllerViewControllerPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6BD3729C8C2C7009BF24B /* PresentingViewControllerViewControllerPresenter.swift */; };
124
+ F9B6BD3A29C8C2E1009BF24B /* PresentingViewControllerViewControllerPresenterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6BD3929C8C2E1009BF24B /* PresentingViewControllerViewControllerPresenterTests.swift */; };
125
+ 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 */; };
128
+ F9B7E59D29E5657B00AB9208 /* AudioCallOptions+Equatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E59C29E5657B00AB9208 /* AudioCallOptions+Equatable.swift */; };
129
+ F9B7E59F29E565A900AB9208 /* CallOptions+Equatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E59E29E565A900AB9208 /* CallOptions+Equatable.swift */; };
130
+ F9B7E5A129E5663900AB9208 /* AudioCallOptions+EquatableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E5A029E5663900AB9208 /* AudioCallOptions+EquatableTests.swift */; };
131
+ F9B7E5A329E5666000AB9208 /* CallOptions+EquatableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E5A229E5666000AB9208 /* CallOptions+EquatableTests.swift */; };
132
+ F9B7E5A729E5888E00AB9208 /* KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E5A629E5888E00AB9208 /* KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift */; };
133
+ F9B7E5A929E5912700AB9208 /* CreateCallOptions+Equatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E5A829E5912700AB9208 /* CreateCallOptions+Equatable.swift */; };
134
+ F9B7E5AB29E5913E00AB9208 /* CreateCallOptions+EquatableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E5AA29E5913E00AB9208 /* CreateCallOptions+EquatableTests.swift */; };
135
+ F9B7E5AE29E5A4BA00AB9208 /* CallWindowProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B7E5AD29E5A4BA00AB9208 /* CallWindowProtocol.swift */; };
136
+ F9C6F96629DDBB610094DB30 /* CallDoubles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9C6F96529DDBB610094DB30 /* CallDoubles.swift */; };
137
+ F9C6F96829DDBD980094DB30 /* CallRegistryDoubles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9C6F96729DDBD980094DB30 /* CallRegistryDoubles.swift */; };
138
+ F9DEA4DA29E83C840011D222 /* MainQueueRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9DEA4D929E83C840011D222 /* MainQueueRelay.swift */; };
139
+ F9DEA4DC29E83F400011D222 /* MainQueueRelayTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9DEA4DB29E83F400011D222 /* MainQueueRelayTests.swift */; };
140
+ F9F2F2362A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F2F2332A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift */; };
141
+ F9F2F2372A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F2F2342A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift */; };
142
+ F9F2F2382A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift */; };
143
+ F9F7EFD429D592D500328400 /* VideoHybridNativeBridgeError.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFD329D592D500328400 /* VideoHybridNativeBridgeError.swift */; };
144
+ F9F7EFD729D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFD629D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift */; };
145
+ F9F7EFD929D5993300328400 /* BandyerSDKProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFD829D5993300328400 /* BandyerSDKProtocol.swift */; };
146
+ F9F7EFDB29D59C5D00328400 /* VideoHybridNativeBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFDA29D59C5D00328400 /* VideoHybridNativeBridge.swift */; };
147
+ F9F7EFDD29D5C02800328400 /* EventsReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFDC29D5C02800328400 /* EventsReporter.swift */; };
148
+ F9F7EFDF29D5C0BB00328400 /* EventsReporterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFDE29D5C0BB00328400 /* EventsReporterTests.swift */; };
149
+ F9F7EFE129D5CF0000328400 /* VideoHybridNativeBridgeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFE029D5CF0000328400 /* VideoHybridNativeBridgeTests.swift */; };
150
+ F9F7EFE329D5E07500328400 /* DTOs+Encodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EFE229D5E07400328400 /* DTOs+Encodable.swift */; };
151
+ F9FE390A29D1C71B00EC304C /* Events+CaseIterable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9FE390929D1C71B00EC304C /* Events+CaseIterable.swift */; };
152
+ F9FE390C29D1C7BF00EC304C /* EventsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9FE390B29D1C7BF00EC304C /* EventsTests.swift */; };
153
+ /* End PBXBuildFile section */
154
+
155
+ /* Begin PBXContainerItemProxy section */
156
+ F9875C7629A661FC00A91C93 /* PBXContainerItemProxy */ = {
157
+ isa = PBXContainerItemProxy;
158
+ containerPortal = F9875C6329A661FB00A91C93 /* Project object */;
159
+ proxyType = 1;
160
+ remoteGlobalIDString = F9875C6B29A661FC00A91C93;
161
+ remoteInfo = BandyerCrossPlatformSupportingLibrary;
162
+ };
163
+ /* End PBXContainerItemProxy section */
164
+
165
+ /* Begin PBXFileReference section */
166
+ 0DBF27EF0DFAE2D959FEA905 /* Pods-KaleyraVideoHybridNativeBridge.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KaleyraVideoHybridNativeBridge.release.xcconfig"; path = "Target Support Files/Pods-KaleyraVideoHybridNativeBridge/Pods-KaleyraVideoHybridNativeBridge.release.xcconfig"; sourceTree = "<group>"; };
167
+ A0F266EFACC797DFE10AE19D /* 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>"; };
168
+ D402E93B64728382079177EC /* 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>"; };
169
+ DB98873C21689B5D31B12E28 /* 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>"; };
170
+ DF8359579961024B3EFBCA2D /* Pods_KaleyraVideoHybridNativeBridge.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KaleyraVideoHybridNativeBridge.framework; sourceTree = BUILT_PRODUCTS_DIR; };
171
+ E96C905FFBA0F1343AD217EF /* Pods_KaleyraVideoHybridNativeBridge_KaleyraVideoHybridNativeBridgeTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KaleyraVideoHybridNativeBridge_KaleyraVideoHybridNativeBridgeTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
172
+ F931C8AE29DECE2400194E1D /* URL+FromString.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URL+FromString.swift"; sourceTree = "<group>"; };
173
+ F931C8B129DECF7600194E1D /* URL+FromStringTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URL+FromStringTests.swift"; sourceTree = "<group>"; };
174
+ F931C8B329DEF24600194E1D /* KaleyraVideoSDKUserInterfacePresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KaleyraVideoSDKUserInterfacePresenter.swift; sourceTree = "<group>"; };
175
+ F931C8B529DEF34300194E1D /* KaleyraVideoSDKUserInterfacePresenterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KaleyraVideoSDKUserInterfacePresenterTests.swift; sourceTree = "<group>"; };
176
+ F931C8B729DEF54500194E1D /* BandyerSDKDoubles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BandyerSDKDoubles.swift; sourceTree = "<group>"; };
177
+ F933A99B2A14E41D009B1773 /* KaleyraVideoConfiguration+BandyerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+BandyerTests.swift"; sourceTree = "<group>"; };
178
+ F933A99D2A150E1E009B1773 /* FakePushCredentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FakePushCredentials.swift; sourceTree = "<group>"; };
179
+ F9594D9029E842C700DD80A6 /* UserInterfacePresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfacePresenter.swift; sourceTree = "<group>"; };
180
+ F967342229D2EE0800F9B914 /* AccessTokenRequester.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccessTokenRequester.swift; sourceTree = "<group>"; };
181
+ F967342429D2EFE500F9B914 /* TokenProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TokenProvider.swift; sourceTree = "<group>"; };
182
+ F967342729D2F00300F9B914 /* TokenProviderTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TokenProviderTests.swift; sourceTree = "<group>"; };
183
+ F967342929D2F56D00F9B914 /* ResultMatchers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ResultMatchers.swift; sourceTree = "<group>"; };
184
+ F96C93F629E8442F004FA995 /* UserInterfacePresenter+MainQueueRelay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserInterfacePresenter+MainQueueRelay.swift"; sourceTree = "<group>"; };
185
+ F96C93F829E84491004FA995 /* UserInterfacePresenter+MainQueueRelayTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserInterfacePresenter+MainQueueRelayTests.swift"; sourceTree = "<group>"; };
186
+ F96C93FA29E84501004FA995 /* UserInterfacePresenterSpy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfacePresenterSpy.swift; sourceTree = "<group>"; };
187
+ F9875C6C29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KaleyraVideoHybridNativeBridge.framework; sourceTree = BUILT_PRODUCTS_DIR; };
188
+ F9875C6F29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KaleyraVideoHybridNativeBridge.h; sourceTree = "<group>"; };
189
+ F9875C7429A661FC00A91C93 /* KaleyraVideoHybridNativeBridgeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KaleyraVideoHybridNativeBridgeTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
190
+ F9875C8529A663B200A91C93 /* MainQueueDispatcher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainQueueDispatcher.swift; sourceTree = "<group>"; };
191
+ F9875C8629A663B200A91C93 /* Lock.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Lock.swift; sourceTree = "<group>"; };
192
+ F9875C8729A663B200A91C93 /* DispatchQueue+isMain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+isMain.swift"; sourceTree = "<group>"; };
193
+ F9875C8929A663B200A91C93 /* DTOs.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DTOs.swift; sourceTree = "<group>"; };
194
+ F9875C8A29A663B200A91C93 /* CallType+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallType+Bandyer.swift"; sourceTree = "<group>"; };
195
+ F9875C8B29A663B200A91C93 /* Region+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Region+Bandyer.swift"; sourceTree = "<group>"; };
196
+ F9875C8C29A663B200A91C93 /* CallOptions+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallOptions+Decodable.swift"; sourceTree = "<group>"; };
197
+ F9875C8D29A663B200A91C93 /* CreateCallOptions+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+Decodable.swift"; sourceTree = "<group>"; };
198
+ F9875C8E29A663B200A91C93 /* CallType+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallType+Decodable.swift"; sourceTree = "<group>"; };
199
+ F9875C8F29A663B200A91C93 /* CallKitConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CallKitConfiguration+Decodable.swift"; sourceTree = "<group>"; };
200
+ F9875C9029A663B200A91C93 /* Environment+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Environment+Decodable.swift"; sourceTree = "<group>"; };
201
+ F9875C9129A663B200A91C93 /* Environment+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Environment+Bandyer.swift"; sourceTree = "<group>"; };
202
+ F9875C9229A663B200A91C93 /* IosConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "IosConfiguration+Decodable.swift"; sourceTree = "<group>"; };
203
+ F9875C9329A663B200A91C93 /* VoipHandlingStrategy+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "VoipHandlingStrategy+Decodable.swift"; sourceTree = "<group>"; };
204
+ F9875C9429A663B200A91C93 /* JSONDecodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONDecodable.swift; sourceTree = "<group>"; };
205
+ F9875C9529A663B200A91C93 /* AudioCallType+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallType+Bandyer.swift"; sourceTree = "<group>"; };
206
+ F9875C9629A663B200A91C93 /* CreateCallOptions+Intent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+Intent.swift"; sourceTree = "<group>"; };
207
+ F9875C9729A663B200A91C93 /* AudioCallOptions+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+Decodable.swift"; sourceTree = "<group>"; };
208
+ F9875C9929A663B200A91C93 /* ChatToolConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "ChatToolConfiguration+Decodable.swift"; sourceTree = "<group>"; };
209
+ F9875C9A29A663B200A91C93 /* AudioCallOptions+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+Bandyer.swift"; sourceTree = "<group>"; };
210
+ F9875C9C29A663B200A91C93 /* AccessTokenResponse+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AccessTokenResponse+Decodable.swift"; sourceTree = "<group>"; };
211
+ F9875C9D29A663B200A91C93 /* AccessTokenRequest+Encodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AccessTokenRequest+Encodable.swift"; sourceTree = "<group>"; };
212
+ F9875C9E29A663B200A91C93 /* UserDetails+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetails+Decodable.swift"; sourceTree = "<group>"; };
213
+ F9875C9F29A663B200A91C93 /* RecordingType+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RecordingType+Bandyer.swift"; sourceTree = "<group>"; };
214
+ F9875CA029A663B200A91C93 /* UserDetailsFormat+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetailsFormat+Decodable.swift"; sourceTree = "<group>"; };
215
+ F9875CA129A663B200A91C93 /* Region+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Region+Decodable.swift"; sourceTree = "<group>"; };
216
+ F9875CA229A663B200A91C93 /* Tools+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Tools+Decodable.swift"; sourceTree = "<group>"; };
217
+ F9875CA329A663B200A91C93 /* Array+JSON.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Array+JSON.swift"; sourceTree = "<group>"; };
218
+ F9875CA429A663B200A91C93 /* ScreenShareToolConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "ScreenShareToolConfiguration+Decodable.swift"; sourceTree = "<group>"; };
219
+ F9875CA529A663B200A91C93 /* AudioCallType+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallType+Decodable.swift"; sourceTree = "<group>"; };
220
+ F9875CA629A663B200A91C93 /* UserDetails+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetails+Bandyer.swift"; sourceTree = "<group>"; };
221
+ F9875CA729A663B200A91C93 /* RecordingType+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "RecordingType+Decodable.swift"; sourceTree = "<group>"; };
222
+ F9875CAA29A663B200A91C93 /* EventEmitter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EventEmitter.swift; sourceTree = "<group>"; };
223
+ F9875CAB29A663B200A91C93 /* Events+Description.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Events+Description.swift"; sourceTree = "<group>"; };
224
+ F9875CAC29A663B200A91C93 /* Events.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Events.swift; sourceTree = "<group>"; };
225
+ F9875CAE29A663B200A91C93 /* PushTokenEventsReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PushTokenEventsReporter.swift; sourceTree = "<group>"; };
226
+ F9875CAF29A663B200A91C93 /* ChatClientEventsReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatClientEventsReporter.swift; sourceTree = "<group>"; };
227
+ F9875CB029A663B200A91C93 /* CallClientEventsReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallClientEventsReporter.swift; sourceTree = "<group>"; };
228
+ F9875CB129A663B200A91C93 /* ClientState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ClientState.swift; sourceTree = "<group>"; };
229
+ F9875CB329A663B200A91C93 /* BroadcastConfigurationPlistReader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastConfigurationPlistReader.swift; sourceTree = "<group>"; };
230
+ F9875CBB29A663B300A91C93 /* UsersDetailsCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UsersDetailsCache.swift; sourceTree = "<group>"; };
231
+ F9875CBD29A663B300A91C93 /* UsersDetailsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UsersDetailsProvider.swift; sourceTree = "<group>"; };
232
+ F9875CBF29A663B300A91C93 /* FormatterProxy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FormatterProxy.swift; sourceTree = "<group>"; };
233
+ F9875CC029A663B300A91C93 /* UserDetailsFormatter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDetailsFormatter.swift; sourceTree = "<group>"; };
234
+ F9875CF429A6650A00A91C93 /* CreateCallOptions+JSONTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+JSONTests.swift"; sourceTree = "<group>"; };
235
+ F9875CF529A6650A00A91C93 /* IosConfiguration+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "IosConfiguration+DecodableTests.swift"; sourceTree = "<group>"; };
236
+ F9875CF629A6650A00A91C93 /* CreateCallOptions+IntentTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+IntentTests.swift"; sourceTree = "<group>"; };
237
+ F9875CF729A6650A00A91C93 /* Tools+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Tools+DecodableTests.swift"; sourceTree = "<group>"; };
238
+ F9875CF829A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+DecodableTests.swift"; sourceTree = "<group>"; };
239
+ F9875CF929A6650A00A91C93 /* EnvironmentTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnvironmentTests.swift; sourceTree = "<group>"; };
240
+ F9875CFA29A6650A00A91C93 /* CreateCallOptions+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+DecodableTests.swift"; sourceTree = "<group>"; };
241
+ F9875CFB29A6650A00A91C93 /* UserDetailsFormat+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDetailsFormat+DecodableTests.swift"; sourceTree = "<group>"; };
242
+ F9875CFC29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AccessTokenRequest+EncodableTests.swift"; sourceTree = "<group>"; };
243
+ F9875CFD29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AccessTokenResponse+DecodableTests.swift"; sourceTree = "<group>"; };
244
+ F9875CFE29A6650A00A91C93 /* RecordingTypeTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RecordingTypeTests.swift; sourceTree = "<group>"; };
245
+ F9875CFF29A6650A00A91C93 /* CallTypeTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallTypeTests.swift; sourceTree = "<group>"; };
246
+ F9875D0029A6650A00A91C93 /* RegionTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RegionTests.swift; sourceTree = "<group>"; };
247
+ F9875D0129A6650A00A91C93 /* AudioCallOptions+BandyerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+BandyerTests.swift"; sourceTree = "<group>"; };
248
+ F9875D0329A6650A00A91C93 /* DispatchQueue+isMainTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+isMainTests.swift"; sourceTree = "<group>"; };
249
+ F9875D0429A6650A00A91C93 /* MainQueueDispatcherTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainQueueDispatcherTests.swift; sourceTree = "<group>"; };
250
+ F9875D0729A6650A00A91C93 /* PushTokenEventsReporterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PushTokenEventsReporterTests.swift; sourceTree = "<group>"; };
251
+ F9875D0829A6650A00A91C93 /* ChatClientEventsReporterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatClientEventsReporterTests.swift; sourceTree = "<group>"; };
252
+ F9875D0929A6650A00A91C93 /* CallClientEventsReporterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallClientEventsReporterTests.swift; sourceTree = "<group>"; };
253
+ F9875D0B29A6650A00A91C93 /* BroadcastConfigurationPlistReaderTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastConfigurationPlistReaderTests.swift; sourceTree = "<group>"; };
254
+ F9875D0F29A6650A00A91C93 /* UsersDetailsCacheTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UsersDetailsCacheTests.swift; sourceTree = "<group>"; };
255
+ F9875D1129A6650A00A91C93 /* UsersDetailsProviderTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UsersDetailsProviderTests.swift; sourceTree = "<group>"; };
256
+ F9875D1329A6650A00A91C93 /* FormatterProxyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FormatterProxyTests.swift; sourceTree = "<group>"; };
257
+ F9875D1429A6650A00A91C93 /* UserDetailsFormatterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDetailsFormatterTests.swift; sourceTree = "<group>"; };
258
+ F9875D1829A6650A00A91C93 /* ChatClientStub.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatClientStub.swift; sourceTree = "<group>"; };
259
+ F9875D1929A6650A00A91C93 /* CallClientStub.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallClientStub.swift; sourceTree = "<group>"; };
260
+ F9875D1A29A6650A00A91C93 /* EventEmitterDoubles.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EventEmitterDoubles.swift; sourceTree = "<group>"; };
261
+ F9875D1C29A6650A00A91C93 /* BoolMatchers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BoolMatchers.swift; sourceTree = "<group>"; };
262
+ F9875D1D29A6650A00A91C93 /* UserDetailsFixtureFactory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDetailsFixtureFactory.swift; sourceTree = "<group>"; };
263
+ F9875D1E29A6650A00A91C93 /* JSONDecodingTestsCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONDecodingTestsCase.swift; sourceTree = "<group>"; };
264
+ F9875D1F29A6650A00A91C93 /* String+PushTokenData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+PushTokenData.swift"; sourceTree = "<group>"; };
265
+ F9875D2029A6650A00A91C93 /* TestHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TestHelpers.swift; sourceTree = "<group>"; };
266
+ F9875D2129A6650A00A91C93 /* CompletionSpy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CompletionSpy.swift; sourceTree = "<group>"; };
267
+ F9875D2229A6650A00A91C93 /* Unwrap.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Unwrap.swift; sourceTree = "<group>"; };
268
+ F9875D2329A6650A00A91C93 /* Weak.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Weak.swift; sourceTree = "<group>"; };
269
+ F9875D2529A6650A00A91C93 /* UnitTestCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitTestCase.swift; sourceTree = "<group>"; };
270
+ F9875D2729A6650A00A91C93 /* valid_config.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = valid_config.plist; sourceTree = "<group>"; };
271
+ F9875D2829A6650A00A91C93 /* missing_group.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = missing_group.plist; sourceTree = "<group>"; };
272
+ F9875D2929A6650A00A91C93 /* missing_broadcast.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = missing_broadcast.plist; sourceTree = "<group>"; };
273
+ F9875D2A29A6650A00A91C93 /* empty_extension_identifier.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = empty_extension_identifier.plist; sourceTree = "<group>"; };
274
+ F9875D2B29A6650A00A91C93 /* mismatched_group.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = mismatched_group.plist; sourceTree = "<group>"; };
275
+ F9875D2C29A6650A00A91C93 /* text.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = text.txt; sourceTree = "<group>"; };
276
+ F9875D2D29A6650A00A91C93 /* mismatched_extension_identifier.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = mismatched_extension_identifier.plist; sourceTree = "<group>"; };
277
+ F9875D2E29A6650A00A91C93 /* empty_group.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = empty_group.plist; sourceTree = "<group>"; };
278
+ F9875D2F29A6650A00A91C93 /* missing_extension_identifier.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = missing_extension_identifier.plist; sourceTree = "<group>"; };
279
+ F9875D3029A6650A00A91C93 /* not_available_group_identifier.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = not_available_group_identifier.plist; sourceTree = "<group>"; };
280
+ F9875D3129A6650A00A91C93 /* not_available_extension_identifier.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = not_available_extension_identifier.plist; sourceTree = "<group>"; };
281
+ F9B6BD2F29C88157009BF24B /* ViewControllerPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewControllerPresenter.swift; sourceTree = "<group>"; };
282
+ F9B6BD3129C882B5009BF24B /* WindowViewControllerPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowViewControllerPresenter.swift; sourceTree = "<group>"; };
283
+ F9B6BD3529C882FA009BF24B /* WindowViewControllerPresenterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowViewControllerPresenterTests.swift; sourceTree = "<group>"; };
284
+ F9B6BD3729C8C2C7009BF24B /* PresentingViewControllerViewControllerPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PresentingViewControllerViewControllerPresenter.swift; sourceTree = "<group>"; };
285
+ F9B6BD3929C8C2E1009BF24B /* PresentingViewControllerViewControllerPresenterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PresentingViewControllerViewControllerPresenterTests.swift; sourceTree = "<group>"; };
286
+ F9B6BD3B29C8C4BD009BF24B /* ViewControllerSpy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewControllerSpy.swift; sourceTree = "<group>"; };
287
+ F9B7E59829E5602800AB9208 /* CallOptions+Bandyer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+Bandyer.swift"; sourceTree = "<group>"; };
288
+ F9B7E59A29E5604500AB9208 /* CallOptions+BandyerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+BandyerTests.swift"; sourceTree = "<group>"; };
289
+ F9B7E59C29E5657B00AB9208 /* AudioCallOptions+Equatable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+Equatable.swift"; sourceTree = "<group>"; };
290
+ F9B7E59E29E565A900AB9208 /* CallOptions+Equatable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+Equatable.swift"; sourceTree = "<group>"; };
291
+ F9B7E5A029E5663900AB9208 /* AudioCallOptions+EquatableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AudioCallOptions+EquatableTests.swift"; sourceTree = "<group>"; };
292
+ F9B7E5A229E5666000AB9208 /* CallOptions+EquatableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CallOptions+EquatableTests.swift"; sourceTree = "<group>"; };
293
+ F9B7E5A629E5888E00AB9208 /* KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift"; sourceTree = "<group>"; };
294
+ F9B7E5A829E5912700AB9208 /* CreateCallOptions+Equatable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+Equatable.swift"; sourceTree = "<group>"; };
295
+ F9B7E5AA29E5913E00AB9208 /* CreateCallOptions+EquatableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CreateCallOptions+EquatableTests.swift"; sourceTree = "<group>"; };
296
+ F9B7E5AD29E5A4BA00AB9208 /* CallWindowProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallWindowProtocol.swift; sourceTree = "<group>"; };
297
+ F9C6F96529DDBB610094DB30 /* CallDoubles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallDoubles.swift; sourceTree = "<group>"; };
298
+ F9C6F96729DDBD980094DB30 /* CallRegistryDoubles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallRegistryDoubles.swift; sourceTree = "<group>"; };
299
+ F9DEA4D929E83C840011D222 /* MainQueueRelay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainQueueRelay.swift; sourceTree = "<group>"; };
300
+ F9DEA4DB29E83F400011D222 /* MainQueueRelayTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainQueueRelayTests.swift; sourceTree = "<group>"; };
301
+ F9F2F2332A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+Decodable.swift"; sourceTree = "<group>"; };
302
+ F9F2F2342A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift"; sourceTree = "<group>"; };
303
+ F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "KaleyraVideoConfiguration+Bandyer.swift"; sourceTree = "<group>"; };
304
+ F9F7EFD329D592D500328400 /* VideoHybridNativeBridgeError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoHybridNativeBridgeError.swift; sourceTree = "<group>"; };
305
+ F9F7EFD629D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoHybridNativeBridgeErrorTests.swift; sourceTree = "<group>"; };
306
+ F9F7EFD829D5993300328400 /* BandyerSDKProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BandyerSDKProtocol.swift; sourceTree = "<group>"; };
307
+ F9F7EFDA29D59C5D00328400 /* VideoHybridNativeBridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoHybridNativeBridge.swift; sourceTree = "<group>"; };
308
+ F9F7EFDC29D5C02800328400 /* EventsReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventsReporter.swift; sourceTree = "<group>"; };
309
+ F9F7EFDE29D5C0BB00328400 /* EventsReporterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventsReporterTests.swift; sourceTree = "<group>"; };
310
+ F9F7EFE029D5CF0000328400 /* VideoHybridNativeBridgeTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoHybridNativeBridgeTests.swift; sourceTree = "<group>"; };
311
+ F9F7EFE229D5E07400328400 /* DTOs+Encodable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "DTOs+Encodable.swift"; sourceTree = "<group>"; };
312
+ F9FE390929D1C71B00EC304C /* Events+CaseIterable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Events+CaseIterable.swift"; sourceTree = "<group>"; };
313
+ F9FE390B29D1C7BF00EC304C /* EventsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventsTests.swift; sourceTree = "<group>"; };
314
+ /* End PBXFileReference section */
315
+
316
+ /* Begin PBXFrameworksBuildPhase section */
317
+ F9875C6929A661FC00A91C93 /* Frameworks */ = {
318
+ isa = PBXFrameworksBuildPhase;
319
+ buildActionMask = 2147483647;
320
+ files = (
321
+ 2B02758D547CD158CD0323B4 /* Pods_KaleyraVideoHybridNativeBridge.framework in Frameworks */,
322
+ );
323
+ runOnlyForDeploymentPostprocessing = 0;
324
+ };
325
+ F9875C7129A661FC00A91C93 /* Frameworks */ = {
326
+ isa = PBXFrameworksBuildPhase;
327
+ buildActionMask = 2147483647;
328
+ files = (
329
+ F9875C7529A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.framework in Frameworks */,
330
+ 6CAC870A6BDFEA0054DF5578 /* Pods_KaleyraVideoHybridNativeBridge_KaleyraVideoHybridNativeBridgeTests.framework in Frameworks */,
331
+ );
332
+ runOnlyForDeploymentPostprocessing = 0;
333
+ };
334
+ /* End PBXFrameworksBuildPhase section */
335
+
336
+ /* Begin PBXGroup section */
337
+ A04417F243B917842D1D4244 /* Pods */ = {
338
+ isa = PBXGroup;
339
+ children = (
340
+ DB98873C21689B5D31B12E28 /* Pods-KaleyraVideoHybridNativeBridge.debug.xcconfig */,
341
+ 0DBF27EF0DFAE2D959FEA905 /* Pods-KaleyraVideoHybridNativeBridge.release.xcconfig */,
342
+ A0F266EFACC797DFE10AE19D /* Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.debug.xcconfig */,
343
+ D402E93B64728382079177EC /* Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.release.xcconfig */,
344
+ );
345
+ path = Pods;
346
+ sourceTree = "<group>";
347
+ };
348
+ E07C6F68F7D3EA2B93AA305D /* Frameworks */ = {
349
+ isa = PBXGroup;
350
+ children = (
351
+ DF8359579961024B3EFBCA2D /* Pods_KaleyraVideoHybridNativeBridge.framework */,
352
+ E96C905FFBA0F1343AD217EF /* Pods_KaleyraVideoHybridNativeBridge_KaleyraVideoHybridNativeBridgeTests.framework */,
353
+ );
354
+ name = Frameworks;
355
+ sourceTree = "<group>";
356
+ };
357
+ F931C8AD29DECE0300194E1D /* Extensions */ = {
358
+ isa = PBXGroup;
359
+ children = (
360
+ F931C8AE29DECE2400194E1D /* URL+FromString.swift */,
361
+ );
362
+ path = Extensions;
363
+ sourceTree = "<group>";
364
+ };
365
+ F931C8B029DECF6100194E1D /* Extensions */ = {
366
+ isa = PBXGroup;
367
+ children = (
368
+ F931C8B129DECF7600194E1D /* URL+FromStringTests.swift */,
369
+ );
370
+ path = Extensions;
371
+ sourceTree = "<group>";
372
+ };
373
+ F967342129D2EDAD00F9B914 /* AccessToken */ = {
374
+ isa = PBXGroup;
375
+ children = (
376
+ F967342229D2EE0800F9B914 /* AccessTokenRequester.swift */,
377
+ F967342429D2EFE500F9B914 /* TokenProvider.swift */,
378
+ );
379
+ path = AccessToken;
380
+ sourceTree = "<group>";
381
+ };
382
+ F967342629D2EFF000F9B914 /* AccessToken */ = {
383
+ isa = PBXGroup;
384
+ children = (
385
+ F967342729D2F00300F9B914 /* TokenProviderTests.swift */,
386
+ );
387
+ path = AccessToken;
388
+ sourceTree = "<group>";
389
+ };
390
+ F9875C6229A661FB00A91C93 = {
391
+ isa = PBXGroup;
392
+ children = (
393
+ F9875C6E29A661FC00A91C93 /* Source */,
394
+ F9875C7829A661FC00A91C93 /* Tests */,
395
+ F9875C6D29A661FC00A91C93 /* Products */,
396
+ A04417F243B917842D1D4244 /* Pods */,
397
+ E07C6F68F7D3EA2B93AA305D /* Frameworks */,
398
+ );
399
+ sourceTree = "<group>";
400
+ };
401
+ F9875C6D29A661FC00A91C93 /* Products */ = {
402
+ isa = PBXGroup;
403
+ children = (
404
+ F9875C6C29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.framework */,
405
+ F9875C7429A661FC00A91C93 /* KaleyraVideoHybridNativeBridgeTests.xctest */,
406
+ );
407
+ name = Products;
408
+ sourceTree = "<group>";
409
+ };
410
+ F9875C6E29A661FC00A91C93 /* Source */ = {
411
+ isa = PBXGroup;
412
+ children = (
413
+ F9B7E5AC29E5A4A100AB9208 /* Abstractions */,
414
+ F967342129D2EDAD00F9B914 /* AccessToken */,
415
+ F9875C6F29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.h */,
416
+ F9875CB229A663B200A91C93 /* Broadcast */,
417
+ F9875C8429A663B200A91C93 /* Concurrency */,
418
+ F9875C8829A663B200A91C93 /* DTOs */,
419
+ F9875CA829A663B200A91C93 /* Events */,
420
+ F931C8AD29DECE0300194E1D /* Extensions */,
421
+ F9F7EFD229D5928E00328400 /* NativeHybridBridge */,
422
+ F9875CB429A663B300A91C93 /* UI */,
423
+ F9875CB729A663B300A91C93 /* User Details */,
424
+ );
425
+ path = Source;
426
+ sourceTree = "<group>";
427
+ };
428
+ F9875C7829A661FC00A91C93 /* Tests */ = {
429
+ isa = PBXGroup;
430
+ children = (
431
+ F9875D2429A6650A00A91C93 /* Base */,
432
+ F9875D1729A6650A00A91C93 /* Doubles */,
433
+ F9875D1B29A6650A00A91C93 /* Helpers */,
434
+ F9875D2629A6650A00A91C93 /* Resources */,
435
+ F9875CF229A6650A00A91C93 /* Unit Tests */,
436
+ );
437
+ path = Tests;
438
+ sourceTree = "<group>";
439
+ };
440
+ F9875C8429A663B200A91C93 /* Concurrency */ = {
441
+ isa = PBXGroup;
442
+ children = (
443
+ F9875C8729A663B200A91C93 /* DispatchQueue+isMain.swift */,
444
+ F9875C8629A663B200A91C93 /* Lock.swift */,
445
+ F9875C8529A663B200A91C93 /* MainQueueDispatcher.swift */,
446
+ F9DEA4D929E83C840011D222 /* MainQueueRelay.swift */,
447
+ );
448
+ path = Concurrency;
449
+ sourceTree = "<group>";
450
+ };
451
+ F9875C8829A663B200A91C93 /* DTOs */ = {
452
+ isa = PBXGroup;
453
+ children = (
454
+ F9F2F2352A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift */,
455
+ F9F2F2332A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift */,
456
+ F9F2F2342A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift */,
457
+ F9875C9D29A663B200A91C93 /* AccessTokenRequest+Encodable.swift */,
458
+ F9875C9C29A663B200A91C93 /* AccessTokenResponse+Decodable.swift */,
459
+ F9875CA329A663B200A91C93 /* Array+JSON.swift */,
460
+ F9875C9A29A663B200A91C93 /* AudioCallOptions+Bandyer.swift */,
461
+ F9875C9729A663B200A91C93 /* AudioCallOptions+Decodable.swift */,
462
+ F9B7E59C29E5657B00AB9208 /* AudioCallOptions+Equatable.swift */,
463
+ F9875C9529A663B200A91C93 /* AudioCallType+Bandyer.swift */,
464
+ F9875CA529A663B200A91C93 /* AudioCallType+Decodable.swift */,
465
+ F9875C8F29A663B200A91C93 /* CallKitConfiguration+Decodable.swift */,
466
+ F9B7E59829E5602800AB9208 /* CallOptions+Bandyer.swift */,
467
+ F9875C8C29A663B200A91C93 /* CallOptions+Decodable.swift */,
468
+ F9B7E59E29E565A900AB9208 /* CallOptions+Equatable.swift */,
469
+ F9875C8A29A663B200A91C93 /* CallType+Bandyer.swift */,
470
+ F9875C8E29A663B200A91C93 /* CallType+Decodable.swift */,
471
+ F9875C9929A663B200A91C93 /* ChatToolConfiguration+Decodable.swift */,
472
+ F9875C8D29A663B200A91C93 /* CreateCallOptions+Decodable.swift */,
473
+ F9B7E5A829E5912700AB9208 /* CreateCallOptions+Equatable.swift */,
474
+ F9875C9629A663B200A91C93 /* CreateCallOptions+Intent.swift */,
475
+ F9875C8929A663B200A91C93 /* DTOs.swift */,
476
+ F9875C9129A663B200A91C93 /* Environment+Bandyer.swift */,
477
+ F9875C9029A663B200A91C93 /* Environment+Decodable.swift */,
478
+ F9875C9229A663B200A91C93 /* IosConfiguration+Decodable.swift */,
479
+ F9875C9429A663B200A91C93 /* JSONDecodable.swift */,
480
+ F9875C9F29A663B200A91C93 /* RecordingType+Bandyer.swift */,
481
+ F9875CA729A663B200A91C93 /* RecordingType+Decodable.swift */,
482
+ F9875C8B29A663B200A91C93 /* Region+Bandyer.swift */,
483
+ F9875CA129A663B200A91C93 /* Region+Decodable.swift */,
484
+ F9875CA429A663B200A91C93 /* ScreenShareToolConfiguration+Decodable.swift */,
485
+ F9875CA229A663B200A91C93 /* Tools+Decodable.swift */,
486
+ F9875CA629A663B200A91C93 /* UserDetails+Bandyer.swift */,
487
+ F9875C9E29A663B200A91C93 /* UserDetails+Decodable.swift */,
488
+ F9875CA029A663B200A91C93 /* UserDetailsFormat+Decodable.swift */,
489
+ F9875C9329A663B200A91C93 /* VoipHandlingStrategy+Decodable.swift */,
490
+ );
491
+ path = DTOs;
492
+ sourceTree = "<group>";
493
+ };
494
+ F9875CA829A663B200A91C93 /* Events */ = {
495
+ isa = PBXGroup;
496
+ children = (
497
+ F9875CA929A663B200A91C93 /* Emitter */,
498
+ F9875CAC29A663B200A91C93 /* Events.swift */,
499
+ F9FE390929D1C71B00EC304C /* Events+CaseIterable.swift */,
500
+ F9875CAB29A663B200A91C93 /* Events+Description.swift */,
501
+ F9875CAD29A663B200A91C93 /* Reporters */,
502
+ );
503
+ path = Events;
504
+ sourceTree = "<group>";
505
+ };
506
+ F9875CA929A663B200A91C93 /* Emitter */ = {
507
+ isa = PBXGroup;
508
+ children = (
509
+ F9875CAA29A663B200A91C93 /* EventEmitter.swift */,
510
+ );
511
+ path = Emitter;
512
+ sourceTree = "<group>";
513
+ };
514
+ F9875CAD29A663B200A91C93 /* Reporters */ = {
515
+ isa = PBXGroup;
516
+ children = (
517
+ F9875CB029A663B200A91C93 /* CallClientEventsReporter.swift */,
518
+ F9875CAF29A663B200A91C93 /* ChatClientEventsReporter.swift */,
519
+ F9875CB129A663B200A91C93 /* ClientState.swift */,
520
+ F9F7EFDC29D5C02800328400 /* EventsReporter.swift */,
521
+ F9875CAE29A663B200A91C93 /* PushTokenEventsReporter.swift */,
522
+ );
523
+ path = Reporters;
524
+ sourceTree = "<group>";
525
+ };
526
+ F9875CB229A663B200A91C93 /* Broadcast */ = {
527
+ isa = PBXGroup;
528
+ children = (
529
+ F9875CB329A663B200A91C93 /* BroadcastConfigurationPlistReader.swift */,
530
+ );
531
+ path = Broadcast;
532
+ sourceTree = "<group>";
533
+ };
534
+ F9875CB429A663B300A91C93 /* UI */ = {
535
+ isa = PBXGroup;
536
+ children = (
537
+ F9B6BD2E29C88121009BF24B /* Presenters */,
538
+ F931C8B329DEF24600194E1D /* KaleyraVideoSDKUserInterfacePresenter.swift */,
539
+ F9594D9029E842C700DD80A6 /* UserInterfacePresenter.swift */,
540
+ F96C93F629E8442F004FA995 /* UserInterfacePresenter+MainQueueRelay.swift */,
541
+ );
542
+ path = UI;
543
+ sourceTree = "<group>";
544
+ };
545
+ F9875CB729A663B300A91C93 /* User Details */ = {
546
+ isa = PBXGroup;
547
+ children = (
548
+ F9875CBA29A663B300A91C93 /* Cache */,
549
+ F9875CBC29A663B300A91C93 /* Providers */,
550
+ F9875CBE29A663B300A91C93 /* Formatter */,
551
+ );
552
+ path = "User Details";
553
+ sourceTree = "<group>";
554
+ };
555
+ F9875CBA29A663B300A91C93 /* Cache */ = {
556
+ isa = PBXGroup;
557
+ children = (
558
+ F9875CBB29A663B300A91C93 /* UsersDetailsCache.swift */,
559
+ );
560
+ path = Cache;
561
+ sourceTree = "<group>";
562
+ };
563
+ F9875CBC29A663B300A91C93 /* Providers */ = {
564
+ isa = PBXGroup;
565
+ children = (
566
+ F9875CBD29A663B300A91C93 /* UsersDetailsProvider.swift */,
567
+ );
568
+ path = Providers;
569
+ sourceTree = "<group>";
570
+ };
571
+ F9875CBE29A663B300A91C93 /* Formatter */ = {
572
+ isa = PBXGroup;
573
+ children = (
574
+ F9875CBF29A663B300A91C93 /* FormatterProxy.swift */,
575
+ F9875CC029A663B300A91C93 /* UserDetailsFormatter.swift */,
576
+ );
577
+ path = Formatter;
578
+ sourceTree = "<group>";
579
+ };
580
+ F9875CF229A6650A00A91C93 /* Unit Tests */ = {
581
+ isa = PBXGroup;
582
+ children = (
583
+ F967342629D2EFF000F9B914 /* AccessToken */,
584
+ F9875D0A29A6650A00A91C93 /* Broadcast */,
585
+ F9875D0229A6650A00A91C93 /* Concurrency */,
586
+ F9875CF329A6650A00A91C93 /* DTOs */,
587
+ F9875D0529A6650A00A91C93 /* Events */,
588
+ F931C8B029DECF6100194E1D /* Extensions */,
589
+ F9F7EFD529D592E300328400 /* NativeHybridBridge */,
590
+ F9B6BD3329C882D1009BF24B /* UI */,
591
+ F9875D0D29A6650A00A91C93 /* User Details */,
592
+ );
593
+ path = "Unit Tests";
594
+ sourceTree = "<group>";
595
+ };
596
+ F9875CF329A6650A00A91C93 /* DTOs */ = {
597
+ isa = PBXGroup;
598
+ children = (
599
+ F9875CFC29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift */,
600
+ F9875CFD29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift */,
601
+ F9875D0129A6650A00A91C93 /* AudioCallOptions+BandyerTests.swift */,
602
+ F9B7E5A029E5663900AB9208 /* AudioCallOptions+EquatableTests.swift */,
603
+ F933A99B2A14E41D009B1773 /* KaleyraVideoConfiguration+BandyerTests.swift */,
604
+ F9875CF829A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift */,
605
+ F9B7E5A629E5888E00AB9208 /* KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift */,
606
+ F9B7E59A29E5604500AB9208 /* CallOptions+BandyerTests.swift */,
607
+ F9B7E5A229E5666000AB9208 /* CallOptions+EquatableTests.swift */,
608
+ F9875CFF29A6650A00A91C93 /* CallTypeTests.swift */,
609
+ F9875CFA29A6650A00A91C93 /* CreateCallOptions+DecodableTests.swift */,
610
+ F9B7E5AA29E5913E00AB9208 /* CreateCallOptions+EquatableTests.swift */,
611
+ F9875CF629A6650A00A91C93 /* CreateCallOptions+IntentTests.swift */,
612
+ F9875CF429A6650A00A91C93 /* CreateCallOptions+JSONTests.swift */,
613
+ F9875CF929A6650A00A91C93 /* EnvironmentTests.swift */,
614
+ F9875CF529A6650A00A91C93 /* IosConfiguration+DecodableTests.swift */,
615
+ F9875CFE29A6650A00A91C93 /* RecordingTypeTests.swift */,
616
+ F9875D0029A6650A00A91C93 /* RegionTests.swift */,
617
+ F9875CF729A6650A00A91C93 /* Tools+DecodableTests.swift */,
618
+ F9875CFB29A6650A00A91C93 /* UserDetailsFormat+DecodableTests.swift */,
619
+ );
620
+ path = DTOs;
621
+ sourceTree = "<group>";
622
+ };
623
+ F9875D0229A6650A00A91C93 /* Concurrency */ = {
624
+ isa = PBXGroup;
625
+ children = (
626
+ F9875D0329A6650A00A91C93 /* DispatchQueue+isMainTests.swift */,
627
+ F9875D0429A6650A00A91C93 /* MainQueueDispatcherTests.swift */,
628
+ F9DEA4DB29E83F400011D222 /* MainQueueRelayTests.swift */,
629
+ );
630
+ path = Concurrency;
631
+ sourceTree = "<group>";
632
+ };
633
+ F9875D0529A6650A00A91C93 /* Events */ = {
634
+ isa = PBXGroup;
635
+ children = (
636
+ F9875D0629A6650A00A91C93 /* Reporters */,
637
+ F9FE390B29D1C7BF00EC304C /* EventsTests.swift */,
638
+ );
639
+ path = Events;
640
+ sourceTree = "<group>";
641
+ };
642
+ F9875D0629A6650A00A91C93 /* Reporters */ = {
643
+ isa = PBXGroup;
644
+ children = (
645
+ F9875D0929A6650A00A91C93 /* CallClientEventsReporterTests.swift */,
646
+ F9875D0829A6650A00A91C93 /* ChatClientEventsReporterTests.swift */,
647
+ F9F7EFDE29D5C0BB00328400 /* EventsReporterTests.swift */,
648
+ F9875D0729A6650A00A91C93 /* PushTokenEventsReporterTests.swift */,
649
+ );
650
+ path = Reporters;
651
+ sourceTree = "<group>";
652
+ };
653
+ F9875D0A29A6650A00A91C93 /* Broadcast */ = {
654
+ isa = PBXGroup;
655
+ children = (
656
+ F9875D0B29A6650A00A91C93 /* BroadcastConfigurationPlistReaderTests.swift */,
657
+ );
658
+ path = Broadcast;
659
+ sourceTree = "<group>";
660
+ };
661
+ F9875D0D29A6650A00A91C93 /* User Details */ = {
662
+ isa = PBXGroup;
663
+ children = (
664
+ F9875D0E29A6650A00A91C93 /* Cache */,
665
+ F9875D1029A6650A00A91C93 /* Providers */,
666
+ F9875D1229A6650A00A91C93 /* Formatter */,
667
+ );
668
+ path = "User Details";
669
+ sourceTree = "<group>";
670
+ };
671
+ F9875D0E29A6650A00A91C93 /* Cache */ = {
672
+ isa = PBXGroup;
673
+ children = (
674
+ F9875D0F29A6650A00A91C93 /* UsersDetailsCacheTests.swift */,
675
+ );
676
+ path = Cache;
677
+ sourceTree = "<group>";
678
+ };
679
+ F9875D1029A6650A00A91C93 /* Providers */ = {
680
+ isa = PBXGroup;
681
+ children = (
682
+ F9875D1129A6650A00A91C93 /* UsersDetailsProviderTests.swift */,
683
+ );
684
+ path = Providers;
685
+ sourceTree = "<group>";
686
+ };
687
+ F9875D1229A6650A00A91C93 /* Formatter */ = {
688
+ isa = PBXGroup;
689
+ children = (
690
+ F9875D1329A6650A00A91C93 /* FormatterProxyTests.swift */,
691
+ F9875D1429A6650A00A91C93 /* UserDetailsFormatterTests.swift */,
692
+ );
693
+ path = Formatter;
694
+ sourceTree = "<group>";
695
+ };
696
+ F9875D1729A6650A00A91C93 /* Doubles */ = {
697
+ isa = PBXGroup;
698
+ children = (
699
+ F9875D1929A6650A00A91C93 /* CallClientStub.swift */,
700
+ F9C6F96529DDBB610094DB30 /* CallDoubles.swift */,
701
+ F9C6F96729DDBD980094DB30 /* CallRegistryDoubles.swift */,
702
+ F9875D1829A6650A00A91C93 /* ChatClientStub.swift */,
703
+ F9875D1A29A6650A00A91C93 /* EventEmitterDoubles.swift */,
704
+ F9B6BD3B29C8C4BD009BF24B /* ViewControllerSpy.swift */,
705
+ F931C8B729DEF54500194E1D /* BandyerSDKDoubles.swift */,
706
+ F96C93FA29E84501004FA995 /* UserInterfacePresenterSpy.swift */,
707
+ F933A99D2A150E1E009B1773 /* FakePushCredentials.swift */,
708
+ );
709
+ path = Doubles;
710
+ sourceTree = "<group>";
711
+ };
712
+ F9875D1B29A6650A00A91C93 /* Helpers */ = {
713
+ isa = PBXGroup;
714
+ children = (
715
+ F9875D1C29A6650A00A91C93 /* BoolMatchers.swift */,
716
+ F9875D2129A6650A00A91C93 /* CompletionSpy.swift */,
717
+ F9875D1E29A6650A00A91C93 /* JSONDecodingTestsCase.swift */,
718
+ F967342929D2F56D00F9B914 /* ResultMatchers.swift */,
719
+ F9875D1F29A6650A00A91C93 /* String+PushTokenData.swift */,
720
+ F9875D2029A6650A00A91C93 /* TestHelpers.swift */,
721
+ F9875D2229A6650A00A91C93 /* Unwrap.swift */,
722
+ F9875D1D29A6650A00A91C93 /* UserDetailsFixtureFactory.swift */,
723
+ F9875D2329A6650A00A91C93 /* Weak.swift */,
724
+ F9F7EFE229D5E07400328400 /* DTOs+Encodable.swift */,
725
+ );
726
+ path = Helpers;
727
+ sourceTree = "<group>";
728
+ };
729
+ F9875D2429A6650A00A91C93 /* Base */ = {
730
+ isa = PBXGroup;
731
+ children = (
732
+ F9875D2529A6650A00A91C93 /* UnitTestCase.swift */,
733
+ );
734
+ path = Base;
735
+ sourceTree = "<group>";
736
+ };
737
+ F9875D2629A6650A00A91C93 /* Resources */ = {
738
+ isa = PBXGroup;
739
+ children = (
740
+ F9875D2729A6650A00A91C93 /* valid_config.plist */,
741
+ F9875D2829A6650A00A91C93 /* missing_group.plist */,
742
+ F9875D2929A6650A00A91C93 /* missing_broadcast.plist */,
743
+ F9875D2A29A6650A00A91C93 /* empty_extension_identifier.plist */,
744
+ F9875D2B29A6650A00A91C93 /* mismatched_group.plist */,
745
+ F9875D2C29A6650A00A91C93 /* text.txt */,
746
+ F9875D2D29A6650A00A91C93 /* mismatched_extension_identifier.plist */,
747
+ F9875D2E29A6650A00A91C93 /* empty_group.plist */,
748
+ F9875D2F29A6650A00A91C93 /* missing_extension_identifier.plist */,
749
+ F9875D3029A6650A00A91C93 /* not_available_group_identifier.plist */,
750
+ F9875D3129A6650A00A91C93 /* not_available_extension_identifier.plist */,
751
+ );
752
+ path = Resources;
753
+ sourceTree = "<group>";
754
+ };
755
+ F9B6BD2E29C88121009BF24B /* Presenters */ = {
756
+ isa = PBXGroup;
757
+ children = (
758
+ F9B6BD3729C8C2C7009BF24B /* PresentingViewControllerViewControllerPresenter.swift */,
759
+ F9B6BD2F29C88157009BF24B /* ViewControllerPresenter.swift */,
760
+ F9B6BD3129C882B5009BF24B /* WindowViewControllerPresenter.swift */,
761
+ );
762
+ path = Presenters;
763
+ sourceTree = "<group>";
764
+ };
765
+ F9B6BD3329C882D1009BF24B /* UI */ = {
766
+ isa = PBXGroup;
767
+ children = (
768
+ F9B6BD3429C882E9009BF24B /* Presenters */,
769
+ F931C8B529DEF34300194E1D /* KaleyraVideoSDKUserInterfacePresenterTests.swift */,
770
+ F96C93F829E84491004FA995 /* UserInterfacePresenter+MainQueueRelayTests.swift */,
771
+ );
772
+ path = UI;
773
+ sourceTree = "<group>";
774
+ };
775
+ F9B6BD3429C882E9009BF24B /* Presenters */ = {
776
+ isa = PBXGroup;
777
+ children = (
778
+ F9B6BD3529C882FA009BF24B /* WindowViewControllerPresenterTests.swift */,
779
+ F9B6BD3929C8C2E1009BF24B /* PresentingViewControllerViewControllerPresenterTests.swift */,
780
+ );
781
+ path = Presenters;
782
+ sourceTree = "<group>";
783
+ };
784
+ F9B7E5AC29E5A4A100AB9208 /* Abstractions */ = {
785
+ isa = PBXGroup;
786
+ children = (
787
+ F9F7EFD829D5993300328400 /* BandyerSDKProtocol.swift */,
788
+ F9B7E5AD29E5A4BA00AB9208 /* CallWindowProtocol.swift */,
789
+ );
790
+ path = Abstractions;
791
+ sourceTree = "<group>";
792
+ };
793
+ F9F7EFD229D5928E00328400 /* NativeHybridBridge */ = {
794
+ isa = PBXGroup;
795
+ children = (
796
+ F9F7EFDA29D59C5D00328400 /* VideoHybridNativeBridge.swift */,
797
+ F9F7EFD329D592D500328400 /* VideoHybridNativeBridgeError.swift */,
798
+ );
799
+ path = NativeHybridBridge;
800
+ sourceTree = "<group>";
801
+ };
802
+ F9F7EFD529D592E300328400 /* NativeHybridBridge */ = {
803
+ isa = PBXGroup;
804
+ children = (
805
+ F9F7EFD629D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift */,
806
+ F9F7EFE029D5CF0000328400 /* VideoHybridNativeBridgeTests.swift */,
807
+ );
808
+ path = NativeHybridBridge;
809
+ sourceTree = "<group>";
810
+ };
811
+ /* End PBXGroup section */
812
+
813
+ /* Begin PBXHeadersBuildPhase section */
814
+ F9875C6729A661FC00A91C93 /* Headers */ = {
815
+ isa = PBXHeadersBuildPhase;
816
+ buildActionMask = 2147483647;
817
+ files = (
818
+ F9875C7B29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.h in Headers */,
819
+ );
820
+ runOnlyForDeploymentPostprocessing = 0;
821
+ };
822
+ /* End PBXHeadersBuildPhase section */
823
+
824
+ /* Begin PBXNativeTarget section */
825
+ F9875C6B29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge */ = {
826
+ isa = PBXNativeTarget;
827
+ buildConfigurationList = F9875C7E29A661FC00A91C93 /* Build configuration list for PBXNativeTarget "KaleyraVideoHybridNativeBridge" */;
828
+ buildPhases = (
829
+ 92FFBE44402D6C9E05C87171 /* [CP] Check Pods Manifest.lock */,
830
+ F9875C6729A661FC00A91C93 /* Headers */,
831
+ F9875C6829A661FC00A91C93 /* Sources */,
832
+ F9875C6929A661FC00A91C93 /* Frameworks */,
833
+ F9875C6A29A661FC00A91C93 /* Resources */,
834
+ );
835
+ buildRules = (
836
+ );
837
+ dependencies = (
838
+ );
839
+ name = KaleyraVideoHybridNativeBridge;
840
+ productName = BandyerCrossPlatformSupportingLibrary;
841
+ productReference = F9875C6C29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge.framework */;
842
+ productType = "com.apple.product-type.framework";
843
+ };
844
+ F9875C7329A661FC00A91C93 /* KaleyraVideoHybridNativeBridgeTests */ = {
845
+ isa = PBXNativeTarget;
846
+ buildConfigurationList = F9875C8129A661FC00A91C93 /* Build configuration list for PBXNativeTarget "KaleyraVideoHybridNativeBridgeTests" */;
847
+ buildPhases = (
848
+ CFC0DB906A26CB7EDC9B4893 /* [CP] Check Pods Manifest.lock */,
849
+ F9875C7029A661FC00A91C93 /* Sources */,
850
+ F9875C7129A661FC00A91C93 /* Frameworks */,
851
+ F9875C7229A661FC00A91C93 /* Resources */,
852
+ DE341C4DFCB8029DEE8B4F5F /* [CP] Embed Pods Frameworks */,
853
+ );
854
+ buildRules = (
855
+ );
856
+ dependencies = (
857
+ F9875C7729A661FC00A91C93 /* PBXTargetDependency */,
858
+ );
859
+ name = KaleyraVideoHybridNativeBridgeTests;
860
+ productName = BandyerCrossPlatformSupportingLibraryTests;
861
+ productReference = F9875C7429A661FC00A91C93 /* KaleyraVideoHybridNativeBridgeTests.xctest */;
862
+ productType = "com.apple.product-type.bundle.unit-test";
863
+ };
864
+ /* End PBXNativeTarget section */
865
+
866
+ /* Begin PBXProject section */
867
+ F9875C6329A661FB00A91C93 /* Project object */ = {
868
+ isa = PBXProject;
869
+ attributes = {
870
+ BuildIndependentTargetsInParallel = 1;
871
+ LastSwiftUpdateCheck = 1420;
872
+ LastUpgradeCheck = 1420;
873
+ ORGANIZATIONNAME = "Kaleyra S.p.a.";
874
+ TargetAttributes = {
875
+ F9875C6B29A661FC00A91C93 = {
876
+ CreatedOnToolsVersion = 14.2;
877
+ };
878
+ F9875C7329A661FC00A91C93 = {
879
+ CreatedOnToolsVersion = 14.2;
880
+ };
881
+ };
882
+ };
883
+ buildConfigurationList = F9875C6629A661FB00A91C93 /* Build configuration list for PBXProject "KaleyraVideoHybridNativeBridge" */;
884
+ compatibilityVersion = "Xcode 14.0";
885
+ developmentRegion = en;
886
+ hasScannedForEncodings = 0;
887
+ knownRegions = (
888
+ en,
889
+ Base,
890
+ );
891
+ mainGroup = F9875C6229A661FB00A91C93;
892
+ productRefGroup = F9875C6D29A661FC00A91C93 /* Products */;
893
+ projectDirPath = "";
894
+ projectRoot = "";
895
+ targets = (
896
+ F9875C6B29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge */,
897
+ F9875C7329A661FC00A91C93 /* KaleyraVideoHybridNativeBridgeTests */,
898
+ );
899
+ };
900
+ /* End PBXProject section */
901
+
902
+ /* Begin PBXResourcesBuildPhase section */
903
+ F9875C6A29A661FC00A91C93 /* Resources */ = {
904
+ isa = PBXResourcesBuildPhase;
905
+ buildActionMask = 2147483647;
906
+ files = (
907
+ );
908
+ runOnlyForDeploymentPostprocessing = 0;
909
+ };
910
+ F9875C7229A661FC00A91C93 /* Resources */ = {
911
+ isa = PBXResourcesBuildPhase;
912
+ buildActionMask = 2147483647;
913
+ files = (
914
+ F9875D5F29A6650A00A91C93 /* empty_group.plist in Resources */,
915
+ F9875D5D29A6650A00A91C93 /* text.txt in Resources */,
916
+ F9875D6029A6650A00A91C93 /* missing_extension_identifier.plist in Resources */,
917
+ F9875D6129A6650A00A91C93 /* not_available_group_identifier.plist in Resources */,
918
+ F9875D5B29A6650A00A91C93 /* empty_extension_identifier.plist in Resources */,
919
+ F9875D5C29A6650A00A91C93 /* mismatched_group.plist in Resources */,
920
+ F9875D5E29A6650A00A91C93 /* mismatched_extension_identifier.plist in Resources */,
921
+ F9875D5A29A6650A00A91C93 /* missing_broadcast.plist in Resources */,
922
+ F9875D6229A6650A00A91C93 /* not_available_extension_identifier.plist in Resources */,
923
+ F9875D5829A6650A00A91C93 /* valid_config.plist in Resources */,
924
+ F9875D5929A6650A00A91C93 /* missing_group.plist in Resources */,
925
+ );
926
+ runOnlyForDeploymentPostprocessing = 0;
927
+ };
928
+ /* End PBXResourcesBuildPhase section */
929
+
930
+ /* Begin PBXShellScriptBuildPhase section */
931
+ 92FFBE44402D6C9E05C87171 /* [CP] Check Pods Manifest.lock */ = {
932
+ isa = PBXShellScriptBuildPhase;
933
+ buildActionMask = 2147483647;
934
+ files = (
935
+ );
936
+ inputFileListPaths = (
937
+ );
938
+ inputPaths = (
939
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
940
+ "${PODS_ROOT}/Manifest.lock",
941
+ );
942
+ name = "[CP] Check Pods Manifest.lock";
943
+ outputFileListPaths = (
944
+ );
945
+ outputPaths = (
946
+ "$(DERIVED_FILE_DIR)/Pods-KaleyraVideoHybridNativeBridge-checkManifestLockResult.txt",
947
+ );
948
+ runOnlyForDeploymentPostprocessing = 0;
949
+ shellPath = /bin/sh;
950
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
951
+ showEnvVarsInLog = 0;
952
+ };
953
+ CFC0DB906A26CB7EDC9B4893 /* [CP] Check Pods Manifest.lock */ = {
954
+ isa = PBXShellScriptBuildPhase;
955
+ buildActionMask = 2147483647;
956
+ files = (
957
+ );
958
+ inputFileListPaths = (
959
+ );
960
+ inputPaths = (
961
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
962
+ "${PODS_ROOT}/Manifest.lock",
963
+ );
964
+ name = "[CP] Check Pods Manifest.lock";
965
+ outputFileListPaths = (
966
+ );
967
+ outputPaths = (
968
+ "$(DERIVED_FILE_DIR)/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests-checkManifestLockResult.txt",
969
+ );
970
+ runOnlyForDeploymentPostprocessing = 0;
971
+ shellPath = /bin/sh;
972
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
973
+ showEnvVarsInLog = 0;
974
+ };
975
+ DE341C4DFCB8029DEE8B4F5F /* [CP] Embed Pods Frameworks */ = {
976
+ isa = PBXShellScriptBuildPhase;
977
+ buildActionMask = 2147483647;
978
+ files = (
979
+ );
980
+ inputFileListPaths = (
981
+ "${PODS_ROOT}/Target Support Files/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
982
+ );
983
+ name = "[CP] Embed Pods Frameworks";
984
+ outputFileListPaths = (
985
+ "${PODS_ROOT}/Target Support Files/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
986
+ );
987
+ runOnlyForDeploymentPostprocessing = 0;
988
+ shellPath = /bin/sh;
989
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests/Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests-frameworks.sh\"\n";
990
+ showEnvVarsInLog = 0;
991
+ };
992
+ /* End PBXShellScriptBuildPhase section */
993
+
994
+ /* Begin PBXSourcesBuildPhase section */
995
+ F9875C6829A661FC00A91C93 /* Sources */ = {
996
+ isa = PBXSourcesBuildPhase;
997
+ buildActionMask = 2147483647;
998
+ files = (
999
+ F967342329D2EE0900F9B914 /* AccessTokenRequester.swift in Sources */,
1000
+ F931C8B429DEF24600194E1D /* KaleyraVideoSDKUserInterfacePresenter.swift in Sources */,
1001
+ F9875CC329A663B300A91C93 /* DispatchQueue+isMain.swift in Sources */,
1002
+ F9875CE729A663B300A91C93 /* ChatClientEventsReporter.swift in Sources */,
1003
+ F9B7E59929E5602800AB9208 /* CallOptions+Bandyer.swift in Sources */,
1004
+ F967342529D2EFE500F9B914 /* TokenProvider.swift in Sources */,
1005
+ F9875CDE29A663B300A91C93 /* Array+JSON.swift in Sources */,
1006
+ F9875CDB29A663B300A91C93 /* UserDetailsFormat+Decodable.swift in Sources */,
1007
+ F9875CE529A663B300A91C93 /* Events.swift in Sources */,
1008
+ F9875CDD29A663B300A91C93 /* Tools+Decodable.swift in Sources */,
1009
+ F9875CDC29A663B300A91C93 /* Region+Decodable.swift in Sources */,
1010
+ F9F7EFDB29D59C5D00328400 /* VideoHybridNativeBridge.swift in Sources */,
1011
+ F9B7E59F29E565A900AB9208 /* CallOptions+Equatable.swift in Sources */,
1012
+ F9875CE029A663B300A91C93 /* AudioCallType+Decodable.swift in Sources */,
1013
+ F9875CCD29A663B300A91C93 /* IosConfiguration+Decodable.swift in Sources */,
1014
+ F9875CCC29A663B300A91C93 /* Environment+Bandyer.swift in Sources */,
1015
+ F9B6BD3229C882B5009BF24B /* WindowViewControllerPresenter.swift in Sources */,
1016
+ F9875CCA29A663B300A91C93 /* CallKitConfiguration+Decodable.swift in Sources */,
1017
+ F9F2F2362A3A047D0066B6FF /* KaleyraVideoConfiguration+Decodable.swift in Sources */,
1018
+ F96C93F729E8442F004FA995 /* UserInterfacePresenter+MainQueueRelay.swift in Sources */,
1019
+ F9875CD829A663B300A91C93 /* AccessTokenRequest+Encodable.swift in Sources */,
1020
+ F9875CE229A663B300A91C93 /* RecordingType+Decodable.swift in Sources */,
1021
+ F9875CC229A663B300A91C93 /* Lock.swift in Sources */,
1022
+ F9875CC929A663B300A91C93 /* CallType+Decodable.swift in Sources */,
1023
+ F9875CD729A663B300A91C93 /* AccessTokenResponse+Decodable.swift in Sources */,
1024
+ F9DEA4DA29E83C840011D222 /* MainQueueRelay.swift in Sources */,
1025
+ F9875CD029A663B300A91C93 /* AudioCallType+Bandyer.swift in Sources */,
1026
+ F9875CE129A663B300A91C93 /* UserDetails+Bandyer.swift in Sources */,
1027
+ F9875CE929A663B300A91C93 /* ClientState.swift in Sources */,
1028
+ F9875CE629A663B300A91C93 /* PushTokenEventsReporter.swift in Sources */,
1029
+ F9875CD529A663B300A91C93 /* AudioCallOptions+Bandyer.swift in Sources */,
1030
+ F9875CD429A663B300A91C93 /* ChatToolConfiguration+Decodable.swift in Sources */,
1031
+ F9B7E59D29E5657B00AB9208 /* AudioCallOptions+Equatable.swift in Sources */,
1032
+ F9F7EFD429D592D500328400 /* VideoHybridNativeBridgeError.swift in Sources */,
1033
+ F9875CEA29A663B300A91C93 /* BroadcastConfigurationPlistReader.swift in Sources */,
1034
+ F9875CDF29A663B300A91C93 /* ScreenShareToolConfiguration+Decodable.swift in Sources */,
1035
+ F9594D9129E842C700DD80A6 /* UserInterfacePresenter.swift in Sources */,
1036
+ F9875CCF29A663B300A91C93 /* JSONDecodable.swift in Sources */,
1037
+ F9B7E5A929E5912700AB9208 /* CreateCallOptions+Equatable.swift in Sources */,
1038
+ F9B6BD3829C8C2C7009BF24B /* PresentingViewControllerViewControllerPresenter.swift in Sources */,
1039
+ F9B6BD3029C88157009BF24B /* ViewControllerPresenter.swift in Sources */,
1040
+ F9875CC829A663B300A91C93 /* CreateCallOptions+Decodable.swift in Sources */,
1041
+ F9875CE429A663B300A91C93 /* Events+Description.swift in Sources */,
1042
+ F9FE390A29D1C71B00EC304C /* Events+CaseIterable.swift in Sources */,
1043
+ F9F7EFD929D5993300328400 /* BandyerSDKProtocol.swift in Sources */,
1044
+ F9875CD929A663B300A91C93 /* UserDetails+Decodable.swift in Sources */,
1045
+ F9875CE829A663B300A91C93 /* CallClientEventsReporter.swift in Sources */,
1046
+ F9F2F2372A3A047D0066B6FF /* KaleyraVideoConfiguration+UserInterfacePresenterConfiguration.swift in Sources */,
1047
+ F9875CCE29A663B300A91C93 /* VoipHandlingStrategy+Decodable.swift in Sources */,
1048
+ F9875CC529A663B300A91C93 /* CallType+Bandyer.swift in Sources */,
1049
+ F9875CC729A663B300A91C93 /* CallOptions+Decodable.swift in Sources */,
1050
+ F9875CF029A663B300A91C93 /* FormatterProxy.swift in Sources */,
1051
+ F9F2F2382A3A047D0066B6FF /* KaleyraVideoConfiguration+Bandyer.swift in Sources */,
1052
+ F9875CD229A663B300A91C93 /* AudioCallOptions+Decodable.swift in Sources */,
1053
+ F931C8AF29DECE2400194E1D /* URL+FromString.swift in Sources */,
1054
+ F9875CEF29A663B300A91C93 /* UsersDetailsProvider.swift in Sources */,
1055
+ F9875CE329A663B300A91C93 /* EventEmitter.swift in Sources */,
1056
+ F9875CC629A663B300A91C93 /* Region+Bandyer.swift in Sources */,
1057
+ F9875CCB29A663B300A91C93 /* Environment+Decodable.swift in Sources */,
1058
+ F9875CF129A663B300A91C93 /* UserDetailsFormatter.swift in Sources */,
1059
+ F9B7E5AE29E5A4BA00AB9208 /* CallWindowProtocol.swift in Sources */,
1060
+ F9F7EFDD29D5C02800328400 /* EventsReporter.swift in Sources */,
1061
+ F9875CC129A663B300A91C93 /* MainQueueDispatcher.swift in Sources */,
1062
+ F9875CEE29A663B300A91C93 /* UsersDetailsCache.swift in Sources */,
1063
+ F9875CD129A663B300A91C93 /* CreateCallOptions+Intent.swift in Sources */,
1064
+ F9875CC429A663B300A91C93 /* DTOs.swift in Sources */,
1065
+ F9875CDA29A663B300A91C93 /* RecordingType+Bandyer.swift in Sources */,
1066
+ );
1067
+ runOnlyForDeploymentPostprocessing = 0;
1068
+ };
1069
+ F9875C7029A661FC00A91C93 /* Sources */ = {
1070
+ isa = PBXSourcesBuildPhase;
1071
+ buildActionMask = 2147483647;
1072
+ files = (
1073
+ F96C93F929E84491004FA995 /* UserInterfacePresenter+MainQueueRelayTests.swift in Sources */,
1074
+ F9875D5529A6650A00A91C93 /* Unwrap.swift in Sources */,
1075
+ F9875D4829A6650A00A91C93 /* UsersDetailsProviderTests.swift in Sources */,
1076
+ F9875D4529A6650A00A91C93 /* BroadcastConfigurationPlistReaderTests.swift in Sources */,
1077
+ F931C8B229DECF7600194E1D /* URL+FromStringTests.swift in Sources */,
1078
+ F9875D5429A6650A00A91C93 /* CompletionSpy.swift in Sources */,
1079
+ F9875D4329A6650A00A91C93 /* ChatClientEventsReporterTests.swift in Sources */,
1080
+ F9875D5629A6650A00A91C93 /* Weak.swift in Sources */,
1081
+ F9875D3929A6650A00A91C93 /* UserDetailsFormat+DecodableTests.swift in Sources */,
1082
+ F9C6F96829DDBD980094DB30 /* CallRegistryDoubles.swift in Sources */,
1083
+ F9875D4C29A6650A00A91C93 /* ChatClientStub.swift in Sources */,
1084
+ F96C93FB29E84501004FA995 /* UserInterfacePresenterSpy.swift in Sources */,
1085
+ F9875D5129A6650A00A91C93 /* JSONDecodingTestsCase.swift in Sources */,
1086
+ F9875D3329A6650A00A91C93 /* IosConfiguration+DecodableTests.swift in Sources */,
1087
+ F9875D4729A6650A00A91C93 /* UsersDetailsCacheTests.swift in Sources */,
1088
+ F933A99E2A150E1E009B1773 /* FakePushCredentials.swift in Sources */,
1089
+ F9875D3C29A6650A00A91C93 /* RecordingTypeTests.swift in Sources */,
1090
+ F9FE390C29D1C7BF00EC304C /* EventsTests.swift in Sources */,
1091
+ F9B7E5AB29E5913E00AB9208 /* CreateCallOptions+EquatableTests.swift in Sources */,
1092
+ F9875D4F29A6650A00A91C93 /* BoolMatchers.swift in Sources */,
1093
+ F931C8B629DEF34300194E1D /* KaleyraVideoSDKUserInterfacePresenterTests.swift in Sources */,
1094
+ F9875D4029A6650A00A91C93 /* DispatchQueue+isMainTests.swift in Sources */,
1095
+ F9875D5029A6650A00A91C93 /* UserDetailsFixtureFactory.swift in Sources */,
1096
+ F9875D3229A6650A00A91C93 /* CreateCallOptions+JSONTests.swift in Sources */,
1097
+ F9875D4429A6650A00A91C93 /* CallClientEventsReporterTests.swift in Sources */,
1098
+ F9875D3829A6650A00A91C93 /* CreateCallOptions+DecodableTests.swift in Sources */,
1099
+ F9F7EFDF29D5C0BB00328400 /* EventsReporterTests.swift in Sources */,
1100
+ F9875D3429A6650A00A91C93 /* CreateCallOptions+IntentTests.swift in Sources */,
1101
+ F9B7E5A129E5663900AB9208 /* AudioCallOptions+EquatableTests.swift in Sources */,
1102
+ F9875D5329A6650A00A91C93 /* TestHelpers.swift in Sources */,
1103
+ F9875D5729A6650A00A91C93 /* UnitTestCase.swift in Sources */,
1104
+ F9B7E5A729E5888E00AB9208 /* KaleyraVideoConfiguration+UserInterfacePresenterConfigurationTests.swift in Sources */,
1105
+ F9875D3E29A6650A00A91C93 /* RegionTests.swift in Sources */,
1106
+ F9875D5229A6650A00A91C93 /* String+PushTokenData.swift in Sources */,
1107
+ F9B7E59B29E5604500AB9208 /* CallOptions+BandyerTests.swift in Sources */,
1108
+ F9875D3629A6650A00A91C93 /* KaleyraVideoConfiguration+DecodableTests.swift in Sources */,
1109
+ F9875D4A29A6650A00A91C93 /* UserDetailsFormatterTests.swift in Sources */,
1110
+ F9875D3B29A6650A00A91C93 /* AccessTokenResponse+DecodableTests.swift in Sources */,
1111
+ F967342A29D2F56D00F9B914 /* ResultMatchers.swift in Sources */,
1112
+ F9875D4929A6650A00A91C93 /* FormatterProxyTests.swift in Sources */,
1113
+ F933A99C2A14E41D009B1773 /* KaleyraVideoConfiguration+BandyerTests.swift in Sources */,
1114
+ F9875D3F29A6650A00A91C93 /* AudioCallOptions+BandyerTests.swift in Sources */,
1115
+ F931C8B829DEF54500194E1D /* BandyerSDKDoubles.swift in Sources */,
1116
+ F9875D4E29A6650A00A91C93 /* EventEmitterDoubles.swift in Sources */,
1117
+ F9C6F96629DDBB610094DB30 /* CallDoubles.swift in Sources */,
1118
+ F9875D3529A6650A00A91C93 /* Tools+DecodableTests.swift in Sources */,
1119
+ F9F7EFD729D592F900328400 /* VideoHybridNativeBridgeErrorTests.swift in Sources */,
1120
+ F9875D4D29A6650A00A91C93 /* CallClientStub.swift in Sources */,
1121
+ F9875D4229A6650A00A91C93 /* PushTokenEventsReporterTests.swift in Sources */,
1122
+ F9B6BD3C29C8C4BD009BF24B /* ViewControllerSpy.swift in Sources */,
1123
+ F9DEA4DC29E83F400011D222 /* MainQueueRelayTests.swift in Sources */,
1124
+ F9875D3729A6650A00A91C93 /* EnvironmentTests.swift in Sources */,
1125
+ F9B6BD3A29C8C2E1009BF24B /* PresentingViewControllerViewControllerPresenterTests.swift in Sources */,
1126
+ F9B7E5A329E5666000AB9208 /* CallOptions+EquatableTests.swift in Sources */,
1127
+ F9F7EFE129D5CF0000328400 /* VideoHybridNativeBridgeTests.swift in Sources */,
1128
+ F9875D4129A6650A00A91C93 /* MainQueueDispatcherTests.swift in Sources */,
1129
+ F967342829D2F00300F9B914 /* TokenProviderTests.swift in Sources */,
1130
+ F9B6BD3629C882FA009BF24B /* WindowViewControllerPresenterTests.swift in Sources */,
1131
+ F9875D3A29A6650A00A91C93 /* AccessTokenRequest+EncodableTests.swift in Sources */,
1132
+ F9875D3D29A6650A00A91C93 /* CallTypeTests.swift in Sources */,
1133
+ F9F7EFE329D5E07500328400 /* DTOs+Encodable.swift in Sources */,
1134
+ );
1135
+ runOnlyForDeploymentPostprocessing = 0;
1136
+ };
1137
+ /* End PBXSourcesBuildPhase section */
1138
+
1139
+ /* Begin PBXTargetDependency section */
1140
+ F9875C7729A661FC00A91C93 /* PBXTargetDependency */ = {
1141
+ isa = PBXTargetDependency;
1142
+ target = F9875C6B29A661FC00A91C93 /* KaleyraVideoHybridNativeBridge */;
1143
+ targetProxy = F9875C7629A661FC00A91C93 /* PBXContainerItemProxy */;
1144
+ };
1145
+ /* End PBXTargetDependency section */
1146
+
1147
+ /* Begin XCBuildConfiguration section */
1148
+ F9875C7C29A661FC00A91C93 /* Debug */ = {
1149
+ isa = XCBuildConfiguration;
1150
+ buildSettings = {
1151
+ ALWAYS_SEARCH_USER_PATHS = NO;
1152
+ CLANG_ANALYZER_NONNULL = YES;
1153
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
1154
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
1155
+ CLANG_ENABLE_MODULES = YES;
1156
+ CLANG_ENABLE_OBJC_ARC = YES;
1157
+ CLANG_ENABLE_OBJC_WEAK = YES;
1158
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1159
+ CLANG_WARN_BOOL_CONVERSION = YES;
1160
+ CLANG_WARN_COMMA = YES;
1161
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
1162
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1163
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1164
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1165
+ CLANG_WARN_EMPTY_BODY = YES;
1166
+ CLANG_WARN_ENUM_CONVERSION = YES;
1167
+ CLANG_WARN_INFINITE_RECURSION = YES;
1168
+ CLANG_WARN_INT_CONVERSION = YES;
1169
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1170
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1171
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1172
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1173
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
1174
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1175
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
1176
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
1177
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
1178
+ CLANG_WARN_UNREACHABLE_CODE = YES;
1179
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1180
+ COPY_PHASE_STRIP = NO;
1181
+ CURRENT_PROJECT_VERSION = 1;
1182
+ DEBUG_INFORMATION_FORMAT = dwarf;
1183
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
1184
+ ENABLE_TESTABILITY = YES;
1185
+ GCC_C_LANGUAGE_STANDARD = gnu11;
1186
+ GCC_DYNAMIC_NO_PIC = NO;
1187
+ GCC_NO_COMMON_BLOCKS = YES;
1188
+ GCC_OPTIMIZATION_LEVEL = 0;
1189
+ GCC_PREPROCESSOR_DEFINITIONS = (
1190
+ "DEBUG=1",
1191
+ "$(inherited)",
1192
+ );
1193
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1194
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1195
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
1196
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1197
+ GCC_WARN_UNUSED_FUNCTION = YES;
1198
+ GCC_WARN_UNUSED_VARIABLE = YES;
1199
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
1200
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
1201
+ MTL_FAST_MATH = YES;
1202
+ ONLY_ACTIVE_ARCH = YES;
1203
+ SDKROOT = iphoneos;
1204
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
1205
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1206
+ VERSIONING_SYSTEM = "apple-generic";
1207
+ VERSION_INFO_PREFIX = "";
1208
+ };
1209
+ name = Debug;
1210
+ };
1211
+ F9875C7D29A661FC00A91C93 /* Release */ = {
1212
+ isa = XCBuildConfiguration;
1213
+ buildSettings = {
1214
+ ALWAYS_SEARCH_USER_PATHS = NO;
1215
+ CLANG_ANALYZER_NONNULL = YES;
1216
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
1217
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
1218
+ CLANG_ENABLE_MODULES = YES;
1219
+ CLANG_ENABLE_OBJC_ARC = YES;
1220
+ CLANG_ENABLE_OBJC_WEAK = YES;
1221
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1222
+ CLANG_WARN_BOOL_CONVERSION = YES;
1223
+ CLANG_WARN_COMMA = YES;
1224
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
1225
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1226
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1227
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1228
+ CLANG_WARN_EMPTY_BODY = YES;
1229
+ CLANG_WARN_ENUM_CONVERSION = YES;
1230
+ CLANG_WARN_INFINITE_RECURSION = YES;
1231
+ CLANG_WARN_INT_CONVERSION = YES;
1232
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1233
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1234
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1235
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1236
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
1237
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1238
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
1239
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
1240
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
1241
+ CLANG_WARN_UNREACHABLE_CODE = YES;
1242
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1243
+ COPY_PHASE_STRIP = NO;
1244
+ CURRENT_PROJECT_VERSION = 1;
1245
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1246
+ ENABLE_NS_ASSERTIONS = NO;
1247
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
1248
+ GCC_C_LANGUAGE_STANDARD = gnu11;
1249
+ GCC_NO_COMMON_BLOCKS = YES;
1250
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1251
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1252
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
1253
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1254
+ GCC_WARN_UNUSED_FUNCTION = YES;
1255
+ GCC_WARN_UNUSED_VARIABLE = YES;
1256
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
1257
+ MTL_ENABLE_DEBUG_INFO = NO;
1258
+ MTL_FAST_MATH = YES;
1259
+ SDKROOT = iphoneos;
1260
+ SWIFT_COMPILATION_MODE = wholemodule;
1261
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
1262
+ VALIDATE_PRODUCT = YES;
1263
+ VERSIONING_SYSTEM = "apple-generic";
1264
+ VERSION_INFO_PREFIX = "";
1265
+ };
1266
+ name = Release;
1267
+ };
1268
+ F9875C7F29A661FC00A91C93 /* Debug */ = {
1269
+ isa = XCBuildConfiguration;
1270
+ baseConfigurationReference = DB98873C21689B5D31B12E28 /* Pods-KaleyraVideoHybridNativeBridge.debug.xcconfig */;
1271
+ buildSettings = {
1272
+ CODE_SIGN_STYLE = Automatic;
1273
+ CURRENT_PROJECT_VERSION = 1;
1274
+ DEFINES_MODULE = YES;
1275
+ DEVELOPMENT_TEAM = "";
1276
+ DYLIB_COMPATIBILITY_VERSION = 1;
1277
+ DYLIB_CURRENT_VERSION = 1;
1278
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1279
+ GENERATE_INFOPLIST_FILE = YES;
1280
+ INFOPLIST_KEY_NSHumanReadableCopyright = "";
1281
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1282
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
1283
+ LD_RUNPATH_SEARCH_PATHS = (
1284
+ "$(inherited)",
1285
+ "@executable_path/Frameworks",
1286
+ "@loader_path/Frameworks",
1287
+ );
1288
+ MARKETING_VERSION = 1.0;
1289
+ PRODUCT_BUNDLE_IDENTIFIER = com.kaleyra.VideoHybidNativeBridge;
1290
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
1291
+ SKIP_INSTALL = YES;
1292
+ SWIFT_EMIT_LOC_STRINGS = YES;
1293
+ SWIFT_VERSION = 5.0;
1294
+ TARGETED_DEVICE_FAMILY = "1,2";
1295
+ };
1296
+ name = Debug;
1297
+ };
1298
+ F9875C8029A661FC00A91C93 /* Release */ = {
1299
+ isa = XCBuildConfiguration;
1300
+ baseConfigurationReference = 0DBF27EF0DFAE2D959FEA905 /* Pods-KaleyraVideoHybridNativeBridge.release.xcconfig */;
1301
+ buildSettings = {
1302
+ CODE_SIGN_STYLE = Automatic;
1303
+ CURRENT_PROJECT_VERSION = 1;
1304
+ DEFINES_MODULE = YES;
1305
+ DEVELOPMENT_TEAM = "";
1306
+ DYLIB_COMPATIBILITY_VERSION = 1;
1307
+ DYLIB_CURRENT_VERSION = 1;
1308
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1309
+ GENERATE_INFOPLIST_FILE = YES;
1310
+ INFOPLIST_KEY_NSHumanReadableCopyright = "";
1311
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1312
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
1313
+ LD_RUNPATH_SEARCH_PATHS = (
1314
+ "$(inherited)",
1315
+ "@executable_path/Frameworks",
1316
+ "@loader_path/Frameworks",
1317
+ );
1318
+ MARKETING_VERSION = 1.0;
1319
+ PRODUCT_BUNDLE_IDENTIFIER = com.kaleyra.VideoHybidNativeBridge;
1320
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
1321
+ SKIP_INSTALL = YES;
1322
+ SWIFT_EMIT_LOC_STRINGS = YES;
1323
+ SWIFT_VERSION = 5.0;
1324
+ TARGETED_DEVICE_FAMILY = "1,2";
1325
+ };
1326
+ name = Release;
1327
+ };
1328
+ F9875C8229A661FC00A91C93 /* Debug */ = {
1329
+ isa = XCBuildConfiguration;
1330
+ baseConfigurationReference = A0F266EFACC797DFE10AE19D /* Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.debug.xcconfig */;
1331
+ buildSettings = {
1332
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
1333
+ CODE_SIGN_STYLE = Automatic;
1334
+ CURRENT_PROJECT_VERSION = 1;
1335
+ DEVELOPMENT_TEAM = TQ49746752;
1336
+ GENERATE_INFOPLIST_FILE = YES;
1337
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
1338
+ MARKETING_VERSION = 1.0;
1339
+ PRODUCT_BUNDLE_IDENTIFIER = com.kaleyra.VideoHybidNativeBridgeTests;
1340
+ PRODUCT_NAME = "$(TARGET_NAME)";
1341
+ SWIFT_EMIT_LOC_STRINGS = NO;
1342
+ SWIFT_VERSION = 5.0;
1343
+ TARGETED_DEVICE_FAMILY = "1,2";
1344
+ };
1345
+ name = Debug;
1346
+ };
1347
+ F9875C8329A661FC00A91C93 /* Release */ = {
1348
+ isa = XCBuildConfiguration;
1349
+ baseConfigurationReference = D402E93B64728382079177EC /* Pods-KaleyraVideoHybridNativeBridge-KaleyraVideoHybridNativeBridgeTests.release.xcconfig */;
1350
+ buildSettings = {
1351
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
1352
+ CODE_SIGN_STYLE = Automatic;
1353
+ CURRENT_PROJECT_VERSION = 1;
1354
+ DEVELOPMENT_TEAM = TQ49746752;
1355
+ GENERATE_INFOPLIST_FILE = YES;
1356
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
1357
+ MARKETING_VERSION = 1.0;
1358
+ PRODUCT_BUNDLE_IDENTIFIER = com.kaleyra.VideoHybidNativeBridgeTests;
1359
+ PRODUCT_NAME = "$(TARGET_NAME)";
1360
+ SWIFT_EMIT_LOC_STRINGS = NO;
1361
+ SWIFT_VERSION = 5.0;
1362
+ TARGETED_DEVICE_FAMILY = "1,2";
1363
+ };
1364
+ name = Release;
1365
+ };
1366
+ /* End XCBuildConfiguration section */
1367
+
1368
+ /* Begin XCConfigurationList section */
1369
+ F9875C6629A661FB00A91C93 /* Build configuration list for PBXProject "KaleyraVideoHybridNativeBridge" */ = {
1370
+ isa = XCConfigurationList;
1371
+ buildConfigurations = (
1372
+ F9875C7C29A661FC00A91C93 /* Debug */,
1373
+ F9875C7D29A661FC00A91C93 /* Release */,
1374
+ );
1375
+ defaultConfigurationIsVisible = 0;
1376
+ defaultConfigurationName = Release;
1377
+ };
1378
+ F9875C7E29A661FC00A91C93 /* Build configuration list for PBXNativeTarget "KaleyraVideoHybridNativeBridge" */ = {
1379
+ isa = XCConfigurationList;
1380
+ buildConfigurations = (
1381
+ F9875C7F29A661FC00A91C93 /* Debug */,
1382
+ F9875C8029A661FC00A91C93 /* Release */,
1383
+ );
1384
+ defaultConfigurationIsVisible = 0;
1385
+ defaultConfigurationName = Release;
1386
+ };
1387
+ F9875C8129A661FC00A91C93 /* Build configuration list for PBXNativeTarget "KaleyraVideoHybridNativeBridgeTests" */ = {
1388
+ isa = XCConfigurationList;
1389
+ buildConfigurations = (
1390
+ F9875C8229A661FC00A91C93 /* Debug */,
1391
+ F9875C8329A661FC00A91C93 /* Release */,
1392
+ );
1393
+ defaultConfigurationIsVisible = 0;
1394
+ defaultConfigurationName = Release;
1395
+ };
1396
+ /* End XCConfigurationList section */
1397
+ };
1398
+ rootObject = F9875C6329A661FB00A91C93 /* Project object */;
1399
+ }