-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from OpenTelecom/video-support
Video support
- Loading branch information
Showing
43 changed files
with
3,588 additions
and
557 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ class ViewController: UIViewController { | |
// Do any additional setup after loading the view, typically from a nib. | ||
WKWebViewRTC(wkwebview: webView, contentController: webView.configuration.userContentController) | ||
|
||
webView.load(URLRequest(url: URL(string: "https://sip-phone-test.reper.io/?name=Display%20Name&websocket=wss://domain.com:5065&[email protected]&password=password")!)) | ||
webView.load(URLRequest(url: URL(string: "https://cordova-rtc.github.io/cordova-plugin-iosrtc-sample/index.html")!)) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = 'WKWebViewRTC' | ||
s.version = '0.2.0' | ||
s.version = '0.3.0' | ||
s.summary = 'WebRTC library for WKWebView for Swift on iOS' | ||
|
||
# This description is used to generate tags and improve search results. | ||
|
@@ -22,22 +22,17 @@ Pod::Spec.new do |s| | |
DESC | ||
|
||
s.homepage = 'https://github.com/OpenTelecom/WKWebViewRTC' | ||
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'OpenTelecom' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/OpenTelecom/WKWebViewRTC.git', :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' | ||
|
||
s.swift_version = '4.2' | ||
s.ios.deployment_target = '11.0' | ||
|
||
s.source_files = 'WKWebViewRTC/Classes/**/*' | ||
s.resources = 'WKWebViewRTC/Js/jsWKWebViewRTC.js' | ||
# s.resource_bundles = { | ||
# 'WKWebViewRTC' => ['WKWebViewRTC/Js/jsWKWebViewRTC.js'] | ||
# } | ||
|
||
# s.public_header_files = 'Pod/Classes/**/*.h' | ||
# s.frameworks = 'AVFoundation' | ||
s.dependency 'GoogleWebRTC', '1.1.29229' | ||
|
||
s.xcconfig = { 'ENABLE_BITCODE' => 'NO', 'ONLY_ACTIVE_ARCH' => 'Yes' } | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.