shiguredo/sora-android-sdk


WebRTC SFU Sora Android SDK https://sora-android-sdk.shiguredo.jp

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.shiguredo:sora-android-sdk:2025.2.0-canary.14'
	}
	dependencies {
		implementation("com.github.shiguredo:sora-android-sdk:2025.2.0-canary.14")
	}
	<dependency>
	    <groupId>com.github.shiguredo</groupId>
	    <artifactId>sora-android-sdk</artifactId>
	    <version>2025.2.0-canary.14</version>
	</dependency>

                            
    libraryDependencies += "com.github.shiguredo" % "sora-android-sdk" % "2025.2.0-canary.14"
        
        

                            
    :dependencies [[com.github.shiguredo/sora-android-sdk "2025.2.0-canary.14"]]
        
        

Readme


Sora Android SDK

Release libwebrtc GitHub tag (latest SemVer) License

Sora Android SDK は WebRTC SFU Sora の Android クライアントアプリケーションを開発するためのライブラリです。

About Shiguredo's open source software

We will not respond to PRs or issues that have not been discussed on Discord. Also, Discord is only available in Japanese.

Please read https://github.com/shiguredo/oss before use.

時雨堂のオープンソースソフトウェアについて

利用前に https://github.com/shiguredo/oss をお読みください。

システム条件

  • Android 5 以降 (エミュレーターでの動作は保証しません)
  • Android Studio 2024.2.2 以降
  • WebRTC SFU Sora 2024.2.0 以降

サンプル

ドキュメント

Sora Android SDK ドキュメント

有償での優先実装が可能な機能一覧

詳細は Discord またはメールにてお問い合わせください

  • オープンソースでの公開が前提
  • 可能であれば企業名の公開
    • 公開が難しい場合は 企業名非公開 と書かせていただきます

機能

  • 音声出力先変更機能

ライセンス

Copyright 2017, Lyo Kato <lyo.kato at gmail.com> (Original Author)
Copyright 2017-2023, Shiguredo Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.