From 1f4b92a2d6bd62c07554f627c3a2926e1e088b7a Mon Sep 17 00:00:00 2001 From: Jean-Michel Trivi Date: Tue, 2 Jun 2009 16:02:31 -0700 Subject: [PATCH] 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. --- tts/java/android/tts/SynthProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tts/java/android/tts/SynthProxy.java b/tts/java/android/tts/SynthProxy.java index 4ed975450d3c3..e065f407599a6 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";