Android11, STT나 TTS가 작동하지 않는다?
Search
📼

Android11, STT나 TTS가 작동하지 않는다?

생성일
2021/09/07 16:05
태그
Android
Kotlin
일반
Android11 부터는 매니페스트에 아래 내용을 추가해야한다.
TTS
<queries> <intent> <action android:name="android.intent.action.TTS_SERVICE" /> </intent> </queries>
Kotlin
복사
STT
<queries> <intent> <action android:name="android.speech.RecognitionService" /> </intent> </queries>
Kotlin
복사
<manifest> </manifest> 사이에 넣어주면 되고 <application> 위에 넣으면 된다. (permission이랑 같은 뎁스)