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 02c775d + bc2e333 commit 6c56cea
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@

## sora-andoroid-sdk-2024.3.1

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

- [UPDATE] システム条件を更新する
- Android Studio 2024.2.2 以降
- @miosakuma @zztkm
- [FIX] 画面回転時に Sora への接続が切断されないようにする
- 画面回転時にアクティビティが再作成され、 `onDestroy()` が実行されることにより Sora から切断する処理が実行されていた
- AndroidManifest.xml の `<activity>``android:configChanges` を追加して画面回転時にアクティビティが再作成を行わないように設定することで回避した
- @miosakuma

## sora-andoroid-sdk-2024.3.1

**リリース日**: 2024-08-30

- [UPDATE] システム条件を更新する
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ Sora Android SDK の使い方は
## システム条件

- Android 5.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 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
1 change: 1 addition & 0 deletions quickstart/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down

0 comments on commit 6c56cea

Please sign in to comment.