Skip to content
/ webrtc Public

WebRTC mirror for building react-native-webrtc

Notifications You must be signed in to change notification settings

jitsi/webrtc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebRTC

This repository contains the WebRTC source code used to build the libraries used by react-native-webrtc.

For a given stable Chrome release (92 as an example) there will be 2 branches in this repository: M92-upstream and M92.

The former is an untouched branch off upstream, with the latter containing custom patches. All the patches we apply are submitted upstream once testes, or abandoned.

Builds

Builds are currently done by @saghul manually (since they require testing and potentially updating react-native-webrtc). Custom builds can be made with this build script.

Building for iOS

After having built the WebRTC.xcframework.zip artifact with the Python script some manual steps are necessary:

  • Create a GH release with the following versioning: X.0.Y where X is the Chrome milestone number and Y is our build number starting at 0
    • The release should tag the milestone branch
  • Upload the build artifact to the release
  • Update the version number and path in ios/JitsiWebRTC.podspec
  • Compute the SHA-256 of the built artifact (yes, the zip file) and update Package.swift
  • Commit all changes
  • Push the spec to CocoaPods: pod trunk push ios/JitsiWebRTC.podspec

Building for Android

After having built the webrtc-android.zip artifact with the Python script some manual steps are necessary:

  • Unzip the file and put it onto android/libs overwriting any existing file
  • Adjust the version numbers in android/build.gradle
  • Commit the result
  • Run the Release Android workflow, that will push the library to Maven Central
  • Go to: https://oss.sonatype.org
  • Login and go to "Staging Repositories"
  • Locate the new one with state "open"
  • Select it and hit "Close", this may take a bit of time to complete
  • After is shows up as "Closes", select it and hit "Release"

Versioning

Releases will follow the following versioning scheme: Chrome Major Version.0.Release Number

CocoaPods

These builds are also published on CocoaPods with the name "JitsiWebRTC".

Starting with version 106 the builds don't contain bitcode (they do contain embedded dSYM slices).

Swift Package Manager

As of release 106.0.0 a Package.swift file is provided for Swift Package Manager support.