Skip to content

Commit

Permalink
Merge branch 'release/sora-android-sdk-2025.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
zztkm committed Jan 27, 2025
2 parents 81ca495 + da9d049 commit 362a297
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@

## develop

## sora-andoroid-sdk-2025.1.0

**リリース日**: 2025-01-27

- [UPDATE] システム条件を更新する
- Android Studio 2024.2.2 以降
- @miosakuma @zztkm

## sora-andoroid-sdk-2024.3.1

**リリース日**: 2024-08-30
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ Please read https://github.com/shiguredo/oss before use.
## システム条件

- Android 8.0 以降 (エミュレーターでの動作は保証しません)
- Android Studio 2024.1.1 以降
- WebRTC SFU Sora 2024.1.0 以降
- Sora Android SDK 2024.3.1 以降
- Android Studio 2024.2.2 以降
- WebRTC SFU Sora 2024.2.0 以降

## サンプルの使い方

Expand All @@ -41,9 +40,9 @@ Please read https://github.com/shiguredo/oss before use.

スポットライトのデモです。アクティブ配信数を固定したチャットが可能です。

### メッセージング
### リアルタイムメッセージング

メッセージングのデモです
リアルタイムメッセージングのデモです

### スクリーンキャスト

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: "com.github.ben-manes.versions"

buildscript {
ext.kotlin_version = '1.9.25'
ext.sora_android_sdk_version = '2024.3.1'
ext.sora_android_sdk_version = '2025.1.0'

repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ class MainActivity : AppCompatActivity() {
description = "スポットライトのデモです。スポットライト数を固定したチャットが可能です。"
),
Feature(
title = "メッセージング",
description = "メッセージングのデモです"
title = "リアルタイムメッセージング",
description = "リアルタイムメッセージングのデモです"
),
Feature(
title = "スクリーンキャスト",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ class SoraMessagingChannel {
val egl: EglBase? = EglBase.create()
mediaOption.role = SoraChannelRole.RECVONLY
mediaOption.enableMultistream()
// 映像の送受信を行わず、メッセージング機能のみを利用する場合は Sora 側で data_channel_messaging_only = true を設定する必要があります
// 映像の送受信を行わず、リアルタイムメッセージング機能のみを利用する場合は Sora 側で data_channel_messaging_only = true を設定する必要があります
// このサンプルでは Sora の設定に関わらず動作するように、不要な映像の受信 (enableVideoDownstream) を行なっています。
// Sora 側で data_channel_messaging_only = true を設定している場合、 この enableVideoDownstream は不要になります。
mediaOption.enableVideoDownstream(egl!!.eglBaseContext)
Expand Down Expand Up @@ -656,7 +656,7 @@ class MessagingActivity : AppCompatActivity() {
super.onCreate(savedInstanceState)
this.window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)

title = "メッセージング"
title = "リアルタイムメッセージング"

setContent {
TopComposable(channel)
Expand Down

0 comments on commit 362a297

Please sign in to comment.