8000 GitHub - iBolom/WebRTC: Unofficial distribution of up to date WebRTC framework binaries for iOS and macOS
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ WebRTC Public
forked from stasel/WebRTC

Unofficial distribution of up to date WebRTC framework binaries for iOS and macOS

License

Notifications You must be signed in to change notification settings

iBolom/WebRTC

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebRTC Binaries for iOS and macOS

Latest version Release Date Total Downloads

This repository contains unofficial distribution of WebRTC framework binaries for iOS and macOS.

Since version M80, Google has deprecated their mobile binary libraries distributions (Was officially using the GoogleWebRTC pod). To get the most up to date WebRTC library, you can compile it on your own, or you can use precompiled binaries from other sources.

📦 Releases

The binary releases correspond with official Chromium releases and branches as specified in the Chromium dashboard.

💡 Things to know

  • All binaries in this repository are compiled from the official WebRTC source code without any modifications to the sources code or to the output binaries.
  • Dynamic framework (xcframework format) which contains multiple binaries for both macOS and iOS.
  • Bitcode is included and this is the reason for the larger file size.

📢 Requirements

  • iOS 10+
  • macOS 10.11+

📀 Binaries included

Platform / arch armv7 arm64 x86 x86_x64
iOS (device) N/A N/A
iOS (simulator) N/A
macOS N/A N/A

macOS Catalyst is not supported.

🚚 Installation

Swift package manager

Xcode has a built-in support for Swift package manager. You can easily add the package by selecting File > Swift Packages > Add Package Dependency. Read more in Apple documentation.

Or, you can add the following dependency to your Package.swift file:

dependencies: [
    .Package(url: "https://github.com/stasel/WebRTC.git", .upToNextMajor("92.0.0"))
]

Use the latest branch to get the most up to date binary:

dependencies: [
    .Package(url: "https://github.com/stasel/WebRTC.git", .branch("latest"))
]

Carthage

Requires Carthage version 0.38 or higher

Add the following dependency to the Cartfile in your project:

binary "https://raw.githubusercontent.com/stasel/WebRTC/latest/WebRTC.json"

Then update the dependencies using the following command:

carthage update --use-xcframeworks

And finally, add the xcframework located in ./Carthage/Build/WebRTC.xcframework to your target(s) embedded frameworks.

Read more about Carthage in its Github repo.

Manual

  1. Download the framework from the releases section.
  2. Unzip the file.
  3. Add the xcframework to your target(s) embedded frameworks.

Cocoapods

Coming soon

👷 Usage

To import WebRTC to your code add the following import statement

import WebRTC

If you wish to see how to use WebRTC I highly recommend checking out my WebRTC demo iOS app: https://github.com/stasel/WebRTC-iOS

🛠 Compile your own WebRTC Frameworks

If you wish to compile your own WebRTC binary framework, please refer to the following official guide: https://webrtc.googlesource.com/src/+/refs/heads/master/docs/native-code/ios/index.md

You can also take a look at the build script I created for more details.

📃 License

About

Unofficial distribution of up to date WebRTC framework binaries for iOS and macOS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 49.8%
  • Python 42.1%
  • Ruby 5.0%
  • Swift 3.1%
0