From 5b268f0b2dd534a1e0aab4f2b169e5469a54a36f Mon Sep 17 00:00:00 2001 From: miosakuma Date: Fri, 4 Oct 2024 16:08:28 +0900 Subject: [PATCH 1/4] =?UTF-8?q?=E3=82=B7=E3=82=B9=E3=83=86=E3=83=A0?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=E3=82=92=E6=9B=B4=E6=96=B0=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.md | 4 ++++ README.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index a3ddbf1..dca9ce9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,10 @@ ## develop +- [UPDATE] システム条件を更新する + - Android Studio 2024.1.2 以降 + - @miosakuma + ## sora-andoroid-sdk-2024.3.1 **リリース日**: 2024-08-30 diff --git a/README.md b/README.md index 614e983..9436891 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Please read https://github.com/shiguredo/oss before use. ## システム条件 - Android 8.0 以降 (エミュレーターでの動作は保証しません) -- Android Studio 2024.1.1 以降 +- Android Studio 2024.1.2 以降 - WebRTC SFU Sora 2024.1.0 以降 - Sora Android SDK 2024.3.1 以降 From 2c636e616b256682b5f6a7bd2d12af8117a850fa Mon Sep 17 00:00:00 2001 From: miosakuma Date: Wed, 18 Dec 2024 16:32:17 +0900 Subject: [PATCH 2/4] =?UTF-8?q?=E3=83=A1=E3=83=83=E3=82=BB=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=83=B3=E3=82=B0=20->=20=E3=83=AA=E3=82=A2=E3=83=AB?= =?UTF-8?q?=E3=82=BF=E3=82=A4=E3=83=A0=E3=83=A1=E3=83=83=E3=82=BB=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=83=B3=E3=82=B0=E3=81=AB=E6=96=87=E8=A8=80=E3=82=92?= =?UTF-8?q?=E7=BD=AE=E3=81=8D=E6=8F=9B=E3=81=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- .../main/kotlin/jp/shiguredo/sora/sample/ui/MainActivity.kt | 4 ++-- .../kotlin/jp/shiguredo/sora/sample/ui/MessagingActivity.kt | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9436891..49a3599 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,9 @@ Please read https://github.com/shiguredo/oss before use. スポットライトのデモです。アクティブ配信数を固定したチャットが可能です。 -### メッセージング +### リアルタイムメッセージング -メッセージングのデモです。 +リアルタイムメッセージングのデモです。 ### スクリーンキャスト diff --git a/samples/src/main/kotlin/jp/shiguredo/sora/sample/ui/MainActivity.kt b/samples/src/main/kotlin/jp/shiguredo/sora/sample/ui/MainActivity.kt index c978a30..8f44ff8 100644 --- a/samples/src/main/kotlin/jp/shiguredo/sora/sample/ui/MainActivity.kt +++ b/samples/src/main/kotlin/jp/shiguredo/sora/sample/ui/MainActivity.kt @@ -79,8 +79,8 @@ class MainActivity : AppCompatActivity() { description = "スポットライトのデモです。スポットライト数を固定したチャットが可能です。" ), Feature( - title = "メッセージング", - description = "メッセージングのデモです" + title = "リアルタイムメッセージング", + description = "リアルタイムメッセージングのデモです" ), Feature( title = "スクリーンキャスト", diff --git a/samples/src/main/kotlin/jp/shiguredo/sora/sample/ui/MessagingActivity.kt b/samples/src/main/kotlin/jp/shiguredo/sora/sample/ui/MessagingActivity.kt index 39b97ce..14a965e 100644 --- a/samples/src/main/kotlin/jp/shiguredo/sora/sample/ui/MessagingActivity.kt +++ b/samples/src/main/kotlin/jp/shiguredo/sora/sample/ui/MessagingActivity.kt @@ -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) @@ -656,7 +656,7 @@ class MessagingActivity : AppCompatActivity() { super.onCreate(savedInstanceState) this.window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON) - title = "メッセージング" + title = "リアルタイムメッセージング" setContent { TopComposable(channel) From 98dd065d0cb6044613dc6a83973caa8507fb7490 Mon Sep 17 00:00:00 2001 From: zztkm Date: Fri, 24 Jan 2025 16:03:41 +0900 Subject: [PATCH 3/4] =?UTF-8?q?=E3=82=B7=E3=82=B9=E3=83=86=E3=83=A0?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=E3=82=92=E6=9B=B4=E6=96=B0=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.md | 4 ++-- README.md | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index dca9ce9..f85eb9c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,8 +12,8 @@ ## develop - [UPDATE] システム条件を更新する - - Android Studio 2024.1.2 以降 - - @miosakuma + - Android Studio 2024.2.2 以降 + - @miosakuma @zztkm ## sora-andoroid-sdk-2024.3.1 diff --git a/README.md b/README.md index 49a3599..ceb8311 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,8 @@ Please read https://github.com/shiguredo/oss before use. ## システム条件 - Android 8.0 以降 (エミュレーターでの動作は保証しません) -- Android Studio 2024.1.2 以降 -- WebRTC SFU Sora 2024.1.0 以降 -- Sora Android SDK 2024.3.1 以降 +- Android Studio 2024.2.2 以降 +- WebRTC SFU Sora 2024.2.0 以降 ## サンプルの使い方 From da9d0499e248c9b98915eaf5285b54f71813a90f Mon Sep 17 00:00:00 2001 From: zztkm Date: Mon, 27 Jan 2025 13:14:11 +0900 Subject: [PATCH 4/4] Sora Android SDK 2025.1.0 --- CHANGES.md | 4 ++++ build.gradle | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index f85eb9c..014c720 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,10 @@ ## develop +## sora-andoroid-sdk-2025.1.0 + +**リリース日**: 2025-01-27 + - [UPDATE] システム条件を更新する - Android Studio 2024.2.2 以降 - @miosakuma @zztkm diff --git a/build.gradle b/build.gradle index 3617d6d..3969d2a 100644 --- a/build.gradle +++ b/build.gradle @@ -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()