summaryrefslogtreecommitdiffstats
path: root/tts
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2009-06-02 16:02:31 -0700
committerJean-Michel Trivi <jmtrivi@google.com>2009-06-02 16:02:31 -0700
commit1f4b92a2d6bd62c07554f627c3a2926e1e088b7a (patch)
tree368ff0f3fee552e726b50f42f3685353954c2f35 /tts
parent1a21de56b9e3e69413ee6addc0e776b40f79782e (diff)
downloadframeworks_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-xtts/java/android/tts/SynthProxy.java2
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";