diff options
author | Jean-Michel Trivi <jmtrivi@google.com> | 2009-06-02 16:02:31 -0700 |
---|---|---|
committer | Jean-Michel Trivi <jmtrivi@google.com> | 2009-06-02 16:02:31 -0700 |
commit | 1f4b92a2d6bd62c07554f627c3a2926e1e088b7a (patch) | |
tree | 368ff0f3fee552e726b50f42f3685353954c2f35 /tts | |
parent | 1a21de56b9e3e69413ee6addc0e776b40f79782e (diff) | |
download | frameworks_base-1f4b92a2d6bd62c07554f627c3a2926e1e088b7a.zip frameworks_base-1f4b92a2d6bd62c07554f627c3a2926e1e088b7a.tar.gz frameworks_base-1f4b92a2d6bd62c07554f627c3a2926e1e088b7a.tar.bz2 |
Corrected the name of the native library the SynthProxy class loads (libttssynthproxy instead of libsynthproxy) to match the lib name from frameworks/base/tts/jni/Android.mk.
Diffstat (limited to 'tts')
-rwxr-xr-x | tts/java/android/tts/SynthProxy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tts/java/android/tts/SynthProxy.java b/tts/java/android/tts/SynthProxy.java index 4ed9754..e065f40 100755 --- a/tts/java/android/tts/SynthProxy.java +++ b/tts/java/android/tts/SynthProxy.java @@ -120,7 +120,7 @@ public class SynthProxy { } static { - System.loadLibrary("synthproxy"); + System.loadLibrary("ttssynthproxy"); } private final static String TAG = "SynthProxy"; |