Skip to content

Commit

Permalink
Merge pull request #33 from shiguredo/feature/fix-not-to-destroy-when…
Browse files Browse the repository at this point in the history
…-orientation-change

画面を回転させると切断される事象を回避する
  • Loading branch information
miosakuma authored Oct 3, 2024
2 parents df35951 + 6ea8166 commit 3d13617
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@

## develop

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

## sora-andoroid-sdk-2024.3.1

**リリース日**: 2024-08-30
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 3d13617

Please sign in to comment.