@stream-io/video-react-native-sdk 0.10.5 → 0.10.6

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ### [0.10.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.5...@stream-io/video-react-native-sdk-0.10.6) (2024-09-03)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * ios build after pip addition was only as a static framework ([#1473](https://github.com/GetStream/stream-video-js/issues/1473)) ([582fbc9](https://github.com/GetStream/stream-video-js/commit/582fbc921070368fde446ae666ef366eb3d46177)), closes [#1470](https://github.com/GetStream/stream-video-js/issues/1470)
11
+
5
12
  ### [0.10.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.4...@stream-io/video-react-native-sdk-0.10.5) (2024-08-28)
6
13
 
7
14
 
@@ -4,5 +4,5 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.version = void 0;
7
- const version = exports.version = '0.10.5';
7
+ const version = exports.version = '0.10.6';
8
8
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export const version = '0.10.5';
1
+ export const version = '0.10.6';
2
2
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const version = "0.10.5";
1
+ export declare const version = "0.10.6";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -21,11 +21,14 @@ class RTCViewPipManager: RCTViewManager {
21
21
  }
22
22
 
23
23
  @objc func onCallClosed(_ reactTag: NSNumber) {
24
- DispatchQueue.main.async {
25
- let component = self.bridge.uiManager.view(
26
- forReactTag: reactTag
27
- ) as! RTCViewPip
28
- component.onCallClosed()
24
+ self.bridge!.uiManager.addUIBlock { (_: RCTUIManager?, viewRegistry: [NSNumber: UIView]?) in
25
+ guard let view = viewRegistry?[reactTag] as? RTCViewPip else {
26
+ if RCT_DEBUG == 1 {
27
+ print("Invalid view returned from registry, expecting RTCViewPip")
28
+ }
29
+ return
30
+ }
31
+ view.onCallClosed()
29
32
  }
30
33
  }
31
34
  }
@@ -2,6 +2,9 @@
2
2
  #import <React/RCTViewManager.h>
3
3
  #import <React/RCTEventEmitter.h>
4
4
  #import <React/RCTLog.h>
5
+ #import <React/RCTUIManager.h>
6
+ #import <React/RCTView.h>
7
+ #import <React/RCTBridge.h>
5
8
 
6
9
  #import <WebRTC/RTCCVPixelBuffer.h>
7
10
  #import <WebRTC/RTCVideoFrame.h>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-native-sdk",
3
- "version": "0.10.5",
3
+ "version": "0.10.6",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "dist/commonjs/index.js",
6
6
  "module": "dist/module/index.js",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '0.10.5';
1
+ export const version = '0.10.6';
@@ -16,31 +16,28 @@ Pod::Spec.new do |s|
16
16
 
17
17
  s.source_files = "ios/**/*.{h,m,mm,swift}"
18
18
  s.dependency "stream-react-native-webrtc"
19
- # Swift/Objective-C compatibility https://blog.cocoapods.org/CocoaPods-1.5.0/
20
- s.pod_target_xcconfig = {
21
- 'DEFINES_MODULE' => 'YES'
22
- }
23
19
 
24
20
  # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
25
21
  # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
26
22
  if respond_to?(:install_modules_dependencies, true)
27
23
  install_modules_dependencies(s)
28
24
  else
29
- s.dependency "React-Core"
25
+ s.dependency "React-Core"
30
26
 
31
- # Don't install the dependencies when we run `pod install` in the old architecture.
32
- if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
33
- s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
34
- s.pod_target_xcconfig = {
35
- "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
36
- "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
37
- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
38
- }
39
- s.dependency "React-Codegen"
40
- s.dependency "RCT-Folly"
41
- s.dependency "RCTRequired"
42
- s.dependency "RCTTypeSafety"
43
- s.dependency "ReactCommon/turbomodule/core"
44
- end
27
+ # Don't install the dependencies when we run `pod install` in the old architecture.
28
+ if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
29
+ s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
30
+ s.pod_target_xcconfig = {
31
+ "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
32
+ "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
33
+ "CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
34
+ }
35
+ s.dependency "React-RCTFabric"
36
+ s.dependency "React-Codegen"
37
+ s.dependency "RCT-Folly"
38
+ s.dependency "RCTRequired"
39
+ s.dependency "RCTTypeSafety"
40
+ s.dependency "ReactCommon/turbomodule/core"
41
+ end
45
42
  end
46
43
  end
@@ -1,361 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- DDF0AD4F2C778F6900E46BC2 /* RTCViewPip.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD3D2C778F6800E46BC2 /* RTCViewPip.swift */; };
11
- DDF0AD502C778F6900E46BC2 /* StreamPixelBufferPool.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD3F2C778F6800E46BC2 /* StreamPixelBufferPool.swift */; };
12
- DDF0AD512C778F6900E46BC2 /* StreamPictureInPictureController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD402C778F6800E46BC2 /* StreamPictureInPictureController.swift */; };
13
- DDF0AD522C778F6900E46BC2 /* StreamPixelBufferRepository.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD412C778F6800E46BC2 /* StreamPixelBufferRepository.swift */; };
14
- DDF0AD532C778F6900E46BC2 /* StreamBufferTransformer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD422C778F6800E46BC2 /* StreamBufferTransformer.swift */; };
15
- DDF0AD542C778F6900E46BC2 /* StreamAVPictureInPictureVideoCallViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD432C778F6800E46BC2 /* StreamAVPictureInPictureVideoCallViewController.swift */; };
16
- DDF0AD552C778F6900E46BC2 /* StreamPictureInPictureVideoRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD442C778F6800E46BC2 /* StreamPictureInPictureVideoRenderer.swift */; };
17
- DDF0AD562C778F6900E46BC2 /* StreamPictureInPictureFixedWindowSizePolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD462C778F6800E46BC2 /* StreamPictureInPictureFixedWindowSizePolicy.swift */; };
18
- DDF0AD572C778F6900E46BC2 /* StreamPictureInPictureAdaptiveWindowSizePolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD472C778F6800E46BC2 /* StreamPictureInPictureAdaptiveWindowSizePolicy.swift */; };
19
- DDF0AD582C778F6900E46BC2 /* StreamPictureInPictureWindowSizePolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD482C778F6800E46BC2 /* StreamPictureInPictureWindowSizePolicy.swift */; };
20
- DDF0AD592C778F6900E46BC2 /* StreamRTCYUVBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD492C778F6800E46BC2 /* StreamRTCYUVBuffer.swift */; };
21
- DDF0AD5A2C778F6900E46BC2 /* YpCbCrPixelRange+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD4A2C778F6800E46BC2 /* YpCbCrPixelRange+Default.swift */; };
22
- DDF0AD5B2C778F6900E46BC2 /* StreamYUVToARGBConversion.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD4B2C778F6800E46BC2 /* StreamYUVToARGBConversion.swift */; };
23
- DDF0AD5C2C778F6900E46BC2 /* StreamPictureInPictureTrackStateAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD4C2C778F6800E46BC2 /* StreamPictureInPictureTrackStateAdapter.swift */; };
24
- DDF0AD5D2C778F6900E46BC2 /* SampleBufferVideoCallView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD4D2C778F6800E46BC2 /* SampleBufferVideoCallView.swift */; };
25
- DDF0AD5E2C778F6900E46BC2 /* RTCViewPipManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD4E2C778F6900E46BC2 /* RTCViewPipManager.swift */; };
26
- DDF0AD612C778F7D00E46BC2 /* RTCViewPipManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = DDF0AD602C778F7C00E46BC2 /* RTCViewPipManager.mm */; };
27
- /* End PBXBuildFile section */
28
-
29
- /* Begin PBXCopyFilesBuildPhase section */
30
- 58B511D91A9E6C8500147676 /* CopyFiles */ = {
31
- isa = PBXCopyFilesBuildPhase;
32
- buildActionMask = 2147483647;
33
- dstPath = "include/$(PRODUCT_NAME)";
34
- dstSubfolderSpec = 16;
35
- files = (
36
- );
37
- runOnlyForDeploymentPostprocessing = 0;
38
- };
39
- /* End PBXCopyFilesBuildPhase section */
40
-
41
- /* Begin PBXFileReference section */
42
- 134814201AA4EA6300B7C361 /* libStreamVideoReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libStreamVideoReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; };
43
- B3E7B5891CC2AC0600A0062D /* StreamVideoReactNative.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StreamVideoReactNative.m; sourceTree = "<group>"; };
44
- D7A6507C28C3C54500AC4DB2 /* StreamVideoReactNative.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StreamVideoReactNative.h; sourceTree = "<group>"; };
45
- DDF0AD3D2C778F6800E46BC2 /* RTCViewPip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RTCViewPip.swift; sourceTree = "<group>"; };
46
- DDF0AD3F2C778F6800E46BC2 /* StreamPixelBufferPool.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamPixelBufferPool.swift; sourceTree = "<group>"; };
47
- DDF0AD402C778F6800E46BC2 /* StreamPictureInPictureController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamPictureInPictureController.swift; sourceTree = "<group>"; };
48
- DDF0AD412C778F6800E46BC2 /* StreamPixelBufferRepository.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamPixelBufferRepository.swift; sourceTree = "<group>"; };
49
- DDF0AD422C778F6800E46BC2 /* StreamBufferTransformer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamBufferTransformer.swift; sourceTree = "<group>"; };
50
- DDF0AD432C778F6800E46BC2 /* StreamAVPictureInPictureVideoCallViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamAVPictureInPictureVideoCallViewController.swift; sourceTree = "<group>"; };
51
- DDF0AD442C778F6800E46BC2 /* StreamPictureInPictureVideoRenderer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamPictureInPictureVideoRenderer.swift; sourceTree = "<group>"; };
52
- DDF0AD462C778F6800E46BC2 /* StreamPictureInPictureFixedWindowSizePolicy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamPictureInPictureFixedWindowSizePolicy.swift; sourceTree = "<group>"; };
53
- DDF0AD472C778F6800E46BC2 /* StreamPictureInPictureAdaptiveWindowSizePolicy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamPictureInPictureAdaptiveWindowSizePolicy.swift; sourceTree = "<group>"; };
54
- DDF0AD482C778F6800E46BC2 /* StreamPictureInPictureWindowSizePolicy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamPictureInPictureWindowSizePolicy.swift; sourceTree = "<group>"; };
55
- DDF0AD492C778F6800E46BC2 /* StreamRTCYUVBuffer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamRTCYUVBuffer.swift; sourceTree = "<group>"; };
56
- DDF0AD4A2C778F6800E46BC2 /* YpCbCrPixelRange+Default.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "YpCbCrPixelRange+Default.swift"; sourceTree = "<group>"; };
57
- DDF0AD4B2C778F6800E46BC2 /* StreamYUVToARGBConversion.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamYUVToARGBConversion.swift; sourceTree = "<group>"; };
58
- DDF0AD4C2C778F6800E46BC2 /* StreamPictureInPictureTrackStateAdapter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamPictureInPictureTrackStateAdapter.swift; sourceTree = "<group>"; };
59
- DDF0AD4D2C778F6800E46BC2 /* SampleBufferVideoCallView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SampleBufferVideoCallView.swift; sourceTree = "<group>"; };
60
- DDF0AD4E2C778F6900E46BC2 /* RTCViewPipManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RTCViewPipManager.swift; sourceTree = "<group>"; };
61
- DDF0AD602C778F7C00E46BC2 /* RTCViewPipManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RTCViewPipManager.mm; sourceTree = "<group>"; };
62
- F4FF95D5245B92E700C19C63 /* StreamVideoReactNative-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "StreamVideoReactNative-Bridging-Header.h"; sourceTree = "<group>"; };
63
- /* End PBXFileReference section */
64
-
65
- /* Begin PBXFrameworksBuildPhase section */
66
- 58B511D81A9E6C8500147676 /* Frameworks */ = {
67
- isa = PBXFrameworksBuildPhase;
68
- buildActionMask = 2147483647;
69
- files = (
70
- );
71
- runOnlyForDeploymentPostprocessing = 0;
72
- };
73
- /* End PBXFrameworksBuildPhase section */
74
-
75
- /* Begin PBXGroup section */
76
- 134814211AA4EA7D00B7C361 /* Products */ = {
77
- isa = PBXGroup;
78
- children = (
79
- 134814201AA4EA6300B7C361 /* libStreamVideoReactNative.a */,
80
- );
81
- name = Products;
82
- sourceTree = "<group>";
83
- };
84
- 58B511D21A9E6C8500147676 = {
85
- isa = PBXGroup;
86
- children = (
87
- DDF0AD602C778F7C00E46BC2 /* RTCViewPipManager.mm */,
88
- DDF0AD3E2C778F6800E46BC2 /* PictureInPicture */,
89
- DDF0AD3D2C778F6800E46BC2 /* RTCViewPip.swift */,
90
- DDF0AD4E2C778F6900E46BC2 /* RTCViewPipManager.swift */,
91
- B3E7B5891CC2AC0600A0062D /* StreamVideoReactNative.m */,
92
- D7A6507C28C3C54500AC4DB2 /* StreamVideoReactNative.h */,
93
- F4FF95D5245B92E700C19C63 /* StreamVideoReactNative-Bridging-Header.h */,
94
- 134814211AA4EA7D00B7C361 /* Products */,
95
- );
96
- sourceTree = "<group>";
97
- };
98
- DDF0AD3E2C778F6800E46BC2 /* PictureInPicture */ = {
99
- isa = PBXGroup;
100
- children = (
101
- DDF0AD3F2C778F6800E46BC2 /* StreamPixelBufferPool.swift */,
102
- DDF0AD402C778F6800E46BC2 /* StreamPictureInPictureController.swift */,
103
- DDF0AD412C778F6800E46BC2 /* StreamPixelBufferRepository.swift */,
104
- DDF0AD422C778F6800E46BC2 /* StreamBufferTransformer.swift */,
105
- DDF0AD432C778F6800E46BC2 /* StreamAVPictureInPictureVideoCallViewController.swift */,
106
- DDF0AD442C778F6800E46BC2 /* StreamPictureInPictureVideoRenderer.swift */,
107
- DDF0AD452C778F6800E46BC2 /* WindowSizePolicy */,
108
- DDF0AD492C778F6800E46BC2 /* StreamRTCYUVBuffer.swift */,
109
- DDF0AD4A2C778F6800E46BC2 /* YpCbCrPixelRange+Default.swift */,
110
- DDF0AD4B2C778F6800E46BC2 /* StreamYUVToARGBConversion.swift */,
111
- DDF0AD4C2C778F6800E46BC2 /* StreamPictureInPictureTrackStateAdapter.swift */,
112
- DDF0AD4D2C778F6800E46BC2 /* SampleBufferVideoCallView.swift */,
113
- );
114
- path = PictureInPicture;
115
- sourceTree = "<group>";
116
- };
117
- DDF0AD452C778F6800E46BC2 /* WindowSizePolicy */ = {
118
- isa = PBXGroup;
119
- children = (
120
- DDF0AD462C778F6800E46BC2 /* StreamPictureInPictureFixedWindowSizePolicy.swift */,
121
- DDF0AD472C778F6800E46BC2 /* StreamPictureInPictureAdaptiveWindowSizePolicy.swift */,
122
- DDF0AD482C778F6800E46BC2 /* StreamPictureInPictureWindowSizePolicy.swift */,
123
- );
124
- path = WindowSizePolicy;
125
- sourceTree = "<group>";
126
- };
127
- /* End PBXGroup section */
128
-
129
- /* Begin PBXNativeTarget section */
130
- 58B511DA1A9E6C8500147676 /* StreamVideoReactNative */ = {
131
- isa = PBXNativeTarget;
132
- buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "StreamVideoReactNative" */;
133
- buildPhases = (
134
- 58B511D71A9E6C8500147676 /* Sources */,
135
- 58B511D81A9E6C8500147676 /* Frameworks */,
136
- 58B511D91A9E6C8500147676 /* CopyFiles */,
137
- );
138
- buildRules = (
139
- );
140
- dependencies = (
141
- );
142
- name = StreamVideoReactNative;
143
- productName = RCTDataManager;
144
- productReference = 134814201AA4EA6300B7C361 /* libStreamVideoReactNative.a */;
145
- productType = "com.apple.product-type.library.static";
146
- };
147
- /* End PBXNativeTarget section */
148
-
149
- /* Begin PBXProject section */
150
- 58B511D31A9E6C8500147676 /* Project object */ = {
151
- isa = PBXProject;
152
- attributes = {
153
- LastUpgradeCheck = 0920;
154
- ORGANIZATIONNAME = Facebook;
155
- TargetAttributes = {
156
- 58B511DA1A9E6C8500147676 = {
157
- CreatedOnToolsVersion = 6.1.1;
158
- };
159
- };
160
- };
161
- buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "StreamVideoReactNative" */;
162
- compatibilityVersion = "Xcode 3.2";
163
- developmentRegion = English;
164
- hasScannedForEncodings = 0;
165
- knownRegions = (
166
- English,
167
- en,
168
- );
169
- mainGroup = 58B511D21A9E6C8500147676;
170
- productRefGroup = 58B511D21A9E6C8500147676;
171
- projectDirPath = "";
172
- projectRoot = "";
173
- targets = (
174
- 58B511DA1A9E6C8500147676 /* StreamVideoReactNative */,
175
- );
176
- };
177
- /* End PBXProject section */
178
-
179
- /* Begin PBXSourcesBuildPhase section */
180
- 58B511D71A9E6C8500147676 /* Sources */ = {
181
- isa = PBXSourcesBuildPhase;
182
- buildActionMask = 2147483647;
183
- files = (
184
- DDF0AD542C778F6900E46BC2 /* StreamAVPictureInPictureVideoCallViewController.swift in Sources */,
185
- DDF0AD572C778F6900E46BC2 /* StreamPictureInPictureAdaptiveWindowSizePolicy.swift in Sources */,
186
- DDF0AD5C2C778F6900E46BC2 /* StreamPictureInPictureTrackStateAdapter.swift in Sources */,
187
- DDF0AD5D2C778F6900E46BC2 /* SampleBufferVideoCallView.swift in Sources */,
188
- DDF0AD522C778F6900E46BC2 /* StreamPixelBufferRepository.swift in Sources */,
189
- DDF0AD562C778F6900E46BC2 /* StreamPictureInPictureFixedWindowSizePolicy.swift in Sources */,
190
- DDF0AD502C778F6900E46BC2 /* StreamPixelBufferPool.swift in Sources */,
191
- DDF0AD4F2C778F6900E46BC2 /* RTCViewPip.swift in Sources */,
192
- DDF0AD532C778F6900E46BC2 /* StreamBufferTransformer.swift in Sources */,
193
- DDF0AD5A2C778F6900E46BC2 /* YpCbCrPixelRange+Default.swift in Sources */,
194
- DDF0AD5E2C778F6900E46BC2 /* RTCViewPipManager.swift in Sources */,
195
- DDF0AD582C778F6900E46BC2 /* StreamPictureInPictureWindowSizePolicy.swift in Sources */,
196
- DDF0AD552C778F6900E46BC2 /* StreamPictureInPictureVideoRenderer.swift in Sources */,
197
- DDF0AD5B2C778F6900E46BC2 /* StreamYUVToARGBConversion.swift in Sources */,
198
- DDF0AD512C778F6900E46BC2 /* StreamPictureInPictureController.swift in Sources */,
199
- DDF0AD612C778F7D00E46BC2 /* RTCViewPipManager.mm in Sources */,
200
- DDF0AD592C778F6900E46BC2 /* StreamRTCYUVBuffer.swift in Sources */,
201
- );
202
- runOnlyForDeploymentPostprocessing = 0;
203
- };
204
- /* End PBXSourcesBuildPhase section */
205
-
206
- /* Begin XCBuildConfiguration section */
207
- 58B511ED1A9E6C8500147676 /* Debug */ = {
208
- isa = XCBuildConfiguration;
209
- buildSettings = {
210
- ALWAYS_SEARCH_USER_PATHS = NO;
211
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
212
- CLANG_CXX_LIBRARY = "libc++";
213
- CLANG_ENABLE_MODULES = YES;
214
- CLANG_ENABLE_OBJC_ARC = YES;
215
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
216
- CLANG_WARN_BOOL_CONVERSION = YES;
217
- CLANG_WARN_COMMA = YES;
218
- CLANG_WARN_CONSTANT_CONVERSION = YES;
219
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
220
- CLANG_WARN_EMPTY_BODY = YES;
221
- CLANG_WARN_ENUM_CONVERSION = YES;
222
- CLANG_WARN_INFINITE_RECURSION = YES;
223
- CLANG_WARN_INT_CONVERSION = YES;
224
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
225
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
226
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
227
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
228
- CLANG_WARN_STRICT_PROTOTYPES = YES;
229
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
230
- CLANG_WARN_UNREACHABLE_CODE = YES;
231
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
232
- COPY_PHASE_STRIP = NO;
233
- ENABLE_STRICT_OBJC_MSGSEND = YES;
234
- ENABLE_TESTABILITY = YES;
235
- GCC_C_LANGUAGE_STANDARD = gnu99;
236
- GCC_DYNAMIC_NO_PIC = NO;
237
- GCC_NO_COMMON_BLOCKS = YES;
238
- GCC_OPTIMIZATION_LEVEL = 0;
239
- GCC_PREPROCESSOR_DEFINITIONS = (
240
- "DEBUG=1",
241
- "$(inherited)",
242
- );
243
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
244
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
245
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
246
- GCC_WARN_UNDECLARED_SELECTOR = YES;
247
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
248
- GCC_WARN_UNUSED_FUNCTION = YES;
249
- GCC_WARN_UNUSED_VARIABLE = YES;
250
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
251
- MTL_ENABLE_DEBUG_INFO = YES;
252
- ONLY_ACTIVE_ARCH = YES;
253
- SDKROOT = iphoneos;
254
- };
255
- name = Debug;
256
- };
257
- 58B511EE1A9E6C8500147676 /* Release */ = {
258
- isa = XCBuildConfiguration;
259
- buildSettings = {
260
- ALWAYS_SEARCH_USER_PATHS = NO;
261
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
262
- CLANG_CXX_LIBRARY = "libc++";
263
- CLANG_ENABLE_MODULES = YES;
264
- CLANG_ENABLE_OBJC_ARC = YES;
265
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
266
- CLANG_WARN_BOOL_CONVERSION = YES;
267
- CLANG_WARN_COMMA = YES;
268
- CLANG_WARN_CONSTANT_CONVERSION = YES;
269
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
270
- CLANG_WARN_EMPTY_BODY = YES;
271
- CLANG_WARN_ENUM_CONVERSION = YES;
272
- CLANG_WARN_INFINITE_RECURSION = YES;
273
- CLANG_WARN_INT_CONVERSION = YES;
274
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
275
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
276
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
277
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
278
- CLANG_WARN_STRICT_PROTOTYPES = YES;
279
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
280
- CLANG_WARN_UNREACHABLE_CODE = YES;
281
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
282
- COPY_PHASE_STRIP = YES;
283
- ENABLE_NS_ASSERTIONS = NO;
284
- ENABLE_STRICT_OBJC_MSGSEND = YES;
285
- GCC_C_LANGUAGE_STANDARD = gnu99;
286
- GCC_NO_COMMON_BLOCKS = YES;
287
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
288
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
289
- GCC_WARN_UNDECLARED_SELECTOR = YES;
290
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
291
- GCC_WARN_UNUSED_FUNCTION = YES;
292
- GCC_WARN_UNUSED_VARIABLE = YES;
293
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
294
- MTL_ENABLE_DEBUG_INFO = NO;
295
- SDKROOT = iphoneos;
296
- VALIDATE_PRODUCT = YES;
297
- };
298
- name = Release;
299
- };
300
- 58B511F01A9E6C8500147676 /* Debug */ = {
301
- isa = XCBuildConfiguration;
302
- buildSettings = {
303
- HEADER_SEARCH_PATHS = (
304
- "$(inherited)",
305
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
306
- "$(SRCROOT)/../../../React/**",
307
- "$(SRCROOT)/../../react-native/React/**",
308
- );
309
- LIBRARY_SEARCH_PATHS = "$(inherited)";
310
- OTHER_LDFLAGS = "-ObjC";
311
- PRODUCT_NAME = StreamVideoReactNative;
312
- SKIP_INSTALL = YES;
313
- SWIFT_OBJC_BRIDGING_HEADER = "StreamVideoReactNative-Bridging-Header.h";
314
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
315
- SWIFT_VERSION = 5.0;
316
- };
317
- name = Debug;
318
- };
319
- 58B511F11A9E6C8500147676 /* Release */ = {
320
- isa = XCBuildConfiguration;
321
- buildSettings = {
322
- HEADER_SEARCH_PATHS = (
323
- "$(inherited)",
324
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
325
- "$(SRCROOT)/../../../React/**",
326
- "$(SRCROOT)/../../react-native/React/**",
327
- );
328
- LIBRARY_SEARCH_PATHS = "$(inherited)";
329
- OTHER_LDFLAGS = "-ObjC";
330
- PRODUCT_NAME = StreamVideoReactNative;
331
- SKIP_INSTALL = YES;
332
- SWIFT_OBJC_BRIDGING_HEADER = "StreamVideoReactNative-Bridging-Header.h";
333
- SWIFT_VERSION = 5.0;
334
- };
335
- name = Release;
336
- };
337
- /* End XCBuildConfiguration section */
338
-
339
- /* Begin XCConfigurationList section */
340
- 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "StreamVideoReactNative" */ = {
341
- isa = XCConfigurationList;
342
- buildConfigurations = (
343
- 58B511ED1A9E6C8500147676 /* Debug */,
344
- 58B511EE1A9E6C8500147676 /* Release */,
345
- );
346
- defaultConfigurationIsVisible = 0;
347
- defaultConfigurationName = Release;
348
- };
349
- 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "StreamVideoReactNative" */ = {
350
- isa = XCConfigurationList;
351
- buildConfigurations = (
352
- 58B511F01A9E6C8500147676 /* Debug */,
353
- 58B511F11A9E6C8500147676 /* Release */,
354
- );
355
- defaultConfigurationIsVisible = 0;
356
- defaultConfigurationName = Release;
357
- };
358
- /* End XCConfigurationList section */
359
- };
360
- rootObject = 58B511D31A9E6C8500147676 /* Project object */;
361
- }
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Workspace
3
- version = "1.0">
4
- <FileRef
5
- location = "self:">
6
- </FileRef>
7
- </Workspace>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>IDEDidComputeMac32BitWarning</key>
6
- <true/>
7
- </dict>
8
- </plist>