Small WebRTC transport demo app for Android

This commit is contained in:
marcus-daily
2025-05-06 13:02:22 +01:00
committed by Marcus
parent a471f49b61
commit da0d2f0266
58 changed files with 2300 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
}
}
rootProject.name = "Pipecat Small WebRTC Client"
include(":small-webrtc-client")