| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
available and unavailable voices.
|
|
|
|
| |
report its language strings for each language.
|
|
|
|
| |
BUG=1573996
|
|
|
|
|
|
|
|
|
|
| |
After the user has initiated the download of the TTS language pack installer,
and that the installer has automatically started running, the installer
(in InstallerActivity) will broadcast an event
(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED) to signal the completion
and success of the installation. The event is picked up by LangPackUninstaller
which triggers the deletion of the installer package to avoid wasting space
on the user's device.
|
|
|
|
|
|
|
|
|
|
| |
When the user clicks "install" for the TTS language pack installer and
the download completes, the addition of the corresponding package is
picked up by VoiceDataInstallerReceiver. It then causes the installer
to run by firing off the RUN_TTS_DATA_INSTALLER event.
This is less confusing for the user because the installation of the
language files is now automatic once the download is initiated. Before,
the user had to "open" the installer after the download completed.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Added support for TTS language files to be loaded from the system partition if
they are not available on the regular path (sdcard). This involves changing
the check for the availability of a language (first check in the system path,
then check the sdcard), and the language switch code (try to load from the
system path if cannot load from sdcard).
Modified the CheckVoiceData activity (which checks for the installation of
all language files) to check on both the sdcard and the system path.
Added makefiles for copying language files to the system image,
PicoLangDefaultInSystem.mk will be used in another CL to copy a default language
to the system.
|
|
|
|
| |
Use the new names of the extra constants in TextToSpeech.Engine.
|
|
|
|
| |
is not present.
|
|
|
|
| |
TextToSpeech.Engine.CHECK_VOICE_DATA_MISSING_DATA_NO_SDCARD to CHECK_VOICE_DATA_MISSING_DATA_NO_EXTERNAL_STORAGE.
|
| |
|
|
|