06-25 12:54:18.981: W/dalvikvm(13518): No implementation found for native Lcom/baidu/speechsynthesizer/data/EmbeddedSynthesizerEngine;.bdTTSGetLicense:(Landroid/content/Context;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I
06-25 12:54:18.981: E/SpeechSynthesizer|SpeechSynthesizer.java:421(13518): error.code = 2014, error.description = so库链接错误
有人知道么,求帮助
收藏
点赞
0
个赞
请登录后评论
TOP
切换版块
看看
我也碰上这个问题了,添加代码解决:
System.loadLibrary("gnustl_shared");
// 部分版本不需要BDSpeechDecoder_V1
try {
System.loadLibrary("BDSpeechDecoder_V1");
} catch (UnsatisfiedLinkError e) {
SpeechLogger.logD("load BDSpeechDecoder_V1 failed, ignore");
}
System.loadLibrary("bd_etts");
System.loadLibrary("bds");
可能是依赖的libbd_etts.so库没有加载成功
同求