api-impl: stubs and fixes for Shosetsu

This commit is contained in:
Julian Winkler
2025-10-04 13:57:53 +02:00
committed by Mis012
parent 8dcaf3e1ef
commit e58d8d2065
18 changed files with 77 additions and 22 deletions

View File

@@ -20,9 +20,17 @@ public class TextToSpeech {
return ERROR;
}
public int setOnUtteranceProgressListener(UtteranceProgressListener listener) {
return ERROR;
}
public void shutdown() {
}
public int stop() {
return ERROR;
}
public static interface OnInitListener {
abstract void onInit(int status);
}

View File

@@ -0,0 +1,4 @@
package android.speech.tts;
public class UtteranceProgressListener {
}