Skip to content

Commit fdabad1

Browse files
committed
85.00.31786
1 parent d428acd commit fdabad1

File tree

14 files changed

+13
-50
lines changed

14 files changed

+13
-50
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# WebRTC
22

3-
# This repository is no longer maintained.
4-
53
Issue reports and pull requests will not be attended.
64

75
* Please use official pod: [[GoogleWebRTC Pod](https://cocoapods.org/pods/GoogleWebRTC)]
@@ -13,7 +11,8 @@ To run the example project, clone the repo, and run `pod install` from the Examp
1311

1412
## Requirements
1513

16-
* iOS 9.0 or higher
14+
* iOS 11.0 or higher
15+
* macOS 10.14 or higher
1716

1817
## Bitcode
1918

@@ -25,7 +24,7 @@ WebRTC is available through [CocoaPods](http://cocoapods.org). To install
2524
it, simply add the following line to your Podfile:
2625

2726
```ruby
28-
pod 'WebRTC', :git => 'https://github.com/xquezme/WebRTC.git', :tag => '61.19850-master'
27+
pod 'WebRTC', :git => 'https://github.com/xquezme/WebRTC.git', :tag => '85.00.31786'
2928
```
3029

3130
## Author

WebRTC.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = "WebRTC"
3-
s.version = "83.00.31360"
4-
s.summary = "APPRTCDemo with WebRTC SDK for iOS"
3+
s.version = "85.00.31786"
4+
s.summary = "WebRTC Universal framework for macOS and iOS"
55
s.homepage = "http://webrtc.org/"
66
s.license = { :type => "MIT", :file => "LICENSE" }
77
s.author = { 'Pimenov Sergey' => '[email protected]' }
88
s.source = { :git => 'https://github.com/xquezme/WebRTC.git', :tag => s.version.to_s }
9-
s.osx.deployment_target = '10.15'
9+
s.osx.deployment_target = '10.14'
1010
s.ios.deployment_target = '11.0'
1111
s.vendored_frameworks = "WebRTC/WebRTC.xcframework"
1212
end

WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCConfiguration.h

-12
Original file line numberDiff line numberDiff line change
@@ -197,18 +197,6 @@ RTC_OBJC_EXPORT
197197

198198
@property(nonatomic, assign) BOOL allowCodecSwitching;
199199

200-
/**
201-
* If MediaTransportFactory is provided in PeerConnectionFactory, this flag informs PeerConnection
202-
* that it should use the MediaTransportInterface.
203-
*/
204-
@property(nonatomic, assign) BOOL useMediaTransport;
205-
206-
/**
207-
* If MediaTransportFactory is provided in PeerConnectionFactory, this flag informs PeerConnection
208-
* that it should use the MediaTransportInterface for data channels.
209-
*/
210-
@property(nonatomic, assign) BOOL useMediaTransportForDataChannels;
211-
212200
/**
213201
* Defines advanced optional cryptographic settings related to SRTP and
214202
* frame encryption for native WebRTC. Setting this will overwrite any

WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/RTCRtpSender.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ RTC_OBJC_EXPORT
2121
@protocol RTC_OBJC_TYPE
2222
(RTCRtpSender)<NSObject>
2323

24-
/** A unique identifier for this sender. */
25-
@property(nonatomic, readonly) NSString *senderId;
24+
/** A unique identifier for this sender. */
25+
@property(nonatomic, readonly) NSString *senderId;
2626

2727
/** The currently active RTCRtpParameters, as defined in
2828
* https://www.w3.org/TR/webrtc/#idl-def-RTCRtpParameters.
Binary file not shown.
56 Bytes
Binary file not shown.

WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCConfiguration.h

-12
Original file line numberDiff line numberDiff line change
@@ -197,18 +197,6 @@ RTC_OBJC_EXPORT
197197

198198
@property(nonatomic, assign) BOOL allowCodecSwitching;
199199

200-
/**
201-
* If MediaTransportFactory is provided in PeerConnectionFactory, this flag informs PeerConnection
202-
* that it should use the MediaTransportInterface.
203-
*/
204-
@property(nonatomic, assign) BOOL useMediaTransport;
205-
206-
/**
207-
* If MediaTransportFactory is provided in PeerConnectionFactory, this flag informs PeerConnection
208-
* that it should use the MediaTransportInterface for data channels.
209-
*/
210-
@property(nonatomic, assign) BOOL useMediaTransportForDataChannels;
211-
212200
/**
213201
* Defines advanced optional cryptographic settings related to SRTP and
214202
* frame encryption for native WebRTC. Setting this will overwrite any

WebRTC/WebRTC.xcframework/ios-x86_64-simulator/WebRTC.framework/Headers/RTCRtpSender.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ RTC_OBJC_EXPORT
2121
@protocol RTC_OBJC_TYPE
2222
(RTCRtpSender)<NSObject>
2323

24-
/** A unique identifier for this sender. */
25-
@property(nonatomic, readonly) NSString *senderId;
24+
/** A unique identifier for this sender. */
25+
@property(nonatomic, readonly) NSString *senderId;
2626

2727
/** The currently active RTCRtpParameters, as defined in
2828
* https://www.w3.org/TR/webrtc/#idl-def-RTCRtpParameters.
Binary file not shown.
Binary file not shown.

WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Headers/RTCConfiguration.h

-12
Original file line numberDiff line numberDiff line change
@@ -197,18 +197,6 @@ RTC_OBJC_EXPORT
197197

198198
@property(nonatomic, assign) BOOL allowCodecSwitching;
199199

200-
/**
201-
* If MediaTransportFactory is provided in PeerConnectionFactory, this flag informs PeerConnection
202-
* that it should use the MediaTransportInterface.
203-
*/
204-
@property(nonatomic, assign) BOOL useMediaTransport;
205-
206-
/**
207-
* If MediaTransportFactory is provided in PeerConnectionFactory, this flag informs PeerConnection
208-
* that it should use the MediaTransportInterface for data channels.
209-
*/
210-
@property(nonatomic, assign) BOOL useMediaTransportForDataChannels;
211-
212200
/**
213201
* Defines advanced optional cryptographic settings related to SRTP and
214202
* frame encryption for native WebRTC. Setting this will overwrite any

WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Headers/RTCRtpSender.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ RTC_OBJC_EXPORT
2121
@protocol RTC_OBJC_TYPE
2222
(RTCRtpSender)<NSObject>
2323

24-
/** A unique identifier for this sender. */
25-
@property(nonatomic, readonly) NSString *senderId;
24+
/** A unique identifier for this sender. */
25+
@property(nonatomic, readonly) NSString *senderId;
2626

2727
/** The currently active RTCRtpParameters, as defined in
2828
* https://www.w3.org/TR/webrtc/#idl-def-RTCRtpParameters.

WebRTC/WebRTC.xcframework/macos-x86_64/WebRTC.framework/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>BuildMachineOSBuild</key>
6-
<string>19E287</string>
6+
<string>19G73</string>
77
<key>CFBundleDevelopmentRegion</key>
88
<string>en</string>
99
<key>CFBundleExecutable</key>
44.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)