![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
com.pexip.sdk:sdk-media-webrtc
Advanced tools
Pexip Android SDK is a collection of libraries for self-hosted Pexip Infinity installations that enables customers to build bespoke applications for Android or add Pexip to existing mobile experiences and workflows.
Make sure that you have mavenCentral()
in the list of repositories:
repositories {
mavenCentral()
}
And add modules that you need:
dependencies {
// A fluent wrapper for Infinity Client REST API
implementation("com.pexip.sdk:sdk-api:0.16.0")
// A set of tools for interacting with an Infinity conference
implementation("com.pexip.sdk:sdk-conference:0.16.0")
// A set of tools for interacting with an Infinity registration
implementation("com.pexip.sdk:sdk-registration:0.16.0")
// A `MediaConnection` implementation build on top of WebRTC
implementation("com.pexip.sdk:sdk-media-webrtc:0.16.0")
// A composable that wraps SurfaceViewRenderer
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.16.0")
}
We also publish a Version Catalog that can be consumed as follows:
// settings.gradle.kts
enableFeaturePreview("VERSION_CATALOGS")
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
register("pexipSdk") {
from("com.pexip.sdk:sdk-catalog:0.16.0")
}
}
}
// build.gradle.kts
dependencies {
implementation(pexipSdk.api.infinity)
}
Snapshot builds are also available and can be configured as follows:
repositories {
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
mavenContent {
snapshotsOnly()
}
}
}
This library uses types from java.time.*
and thus requires the projects to have a minSdk
that
has these APIs available or
use library desugaring.
SDK version | WebRTC Milestone |
---|---|
0.14.0+ | 119 |
0.13.0+ | 114 |
0.12.0+ | 110 |
0.10.0+ | 104 |
0.7.0+ | 102 |
0.1.0+ | 96 |
FAQs
WebRTC-based implementation of sdk-media.
We found that com.pexip.sdk:sdk-media-webrtc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.