File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import Typography from '~/components/Typography';
2323import speechState from '~/store/atoms/speech' ;
2424import { isLEDThemeAtom } from '~/store/atoms/theme' ;
2525import { translate } from '~/translation' ;
26+ import { isDevApp } from '~/utils/isDevApp' ;
2627import { ASYNC_STORAGE_KEYS } from '../constants' ;
2728
2829type SettingItem = {
@@ -115,7 +116,7 @@ const TTSSettingsScreen: React.FC = () => {
115116
116117 // Android 16 (API 36) ではバックグラウンド音声再生が制限されるため無効化
117118 const isAndroid16OrHigher =
118- Platform . OS === 'android' && Number ( Platform . Version ) >= 36 ;
119+ ! isDevApp && Platform . OS === 'android' && Number ( Platform . Version ) >= 36 ;
119120
120121 // Android 16以上ではバックグラウンド再生を強制的にfalseにする
121122 useEffect ( ( ) => {
You can’t perform that action at this time.
0 commit comments