Browse Source

Rename libttsespeak.so to libespeak.so.

master
Reece H. Dunn 12 years ago
parent
commit
b9c0143a9b
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      android/jni/Android.mk
  2. 1
    1
      android/src/com/reecedunn/espeak/SpeechSynthesis.java

+ 1
- 1
android/jni/Android.mk View File



# Common # Common


LOCAL_MODULE := libttsespeak
LOCAL_MODULE := libespeak
LOCAL_MODULE_TAGS := optional LOCAL_MODULE_TAGS := optional
LOCAL_PRELINK_MODULE := false LOCAL_PRELINK_MODULE := false



+ 1
- 1
android/src/com/reecedunn/espeak/SpeechSynthesis.java View File

public static final int GENDER_FEMALE = 2; public static final int GENDER_FEMALE = 2;


static { static {
System.loadLibrary("ttsespeak");
System.loadLibrary("espeak");


nativeClassInit(); nativeClassInit();
} }

Loading…
Cancel
Save