New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

com.shepeliev:webrtc-kmp-ios

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.shepeliev:webrtc-kmp-ios

WebRTC Kotlin Multiplatform SDK

  • 0.89.4
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

WebRTC KMP Maven Central

WebRTC Kotlin Multiplatform SDK

API implementation map

APIAndroidiOSJS
Audio/Video:white_check_mark::white_check_mark::white_check_mark:
Data channel:white_check_mark::white_check_mark::white_check_mark:
Screen Capture

WebRTC revision

Current revision: M89

Installation

Root build.gradle.kts

allprojects {
    repositories {
        mavenCentral()
    }
}

Shared module build.gradle.kts

kotlin {

  ios {
      binaries
          .filterIsInstance<Framework>()
          .forEach {
              it.transitiveExport = true
              it.export("com.shepeliev:webrtc-kmp:$webRtcKmmVersion")
          }
  }

  sourceSets {
      val commonMain by getting {
          dependencies {
              api("com.shepeliev:webrtc-kmp:$webRtcKmmVersion")
              implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2-native-mt")
          }
      }
  }
}

On iOS, in addition to the Kotlin library add in Podfile

pod 'webrtc-kmp', :git => 'git@github.com:shepeliev/webrtc-kmp.git'

Usage

Please reffer to sample project.

FAQs

Package last updated on 05 Sep 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc