뉴톤 음성 샘플 예제 돌릴 시 에러

뉴톤 6.1.4버전 샘플 예제 및 제가 구현한 소스 돌릴 시 아래와 같은 로그의 에러를 볼 수 있습니다…

No implementation found for boolean com.dialoid.speech.tts.TextToSpeech.isRunningJNI() (tried Java_com_dialoid_speech_tts_TextToSpeech_isRunningJNI and Java_com_dialoid_speech_tts_TextToSpeech_isRunningJNI__)

요소가 없다고 하는데 무슨 요인인지 알 수 있을지요?

확인 및 답변 부탁드립니다.

01/14 13:40:19: Launching ‘app’ on Nexus 6 API 23.
$ adb shell am start -n “com.kakao.sdk.newtone.sample/com.kakao.sdk.newtone.sample.SplashActivity” -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Connected to process 6880 on device ‘Nexus_6_API_23 [emulator-5554]’.
Capturing and displaying logcat messages from application. This behavior can be disabled in the “Logcat output” section of the “Debugger” settings page.
W/System: ClassLoader referenced unknown path: /data/app/com.kakao.sdk.newtone.sample-1/lib/x86
W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter androidx.vectordrawable.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
E/SpeechRecognizer: [speechRecognizer] Library requires permission android.permission.WRITE_EXTERNAL_STORAGE
Please add a “uses-permission” element in the “AndroidManifest.xml” />
D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
D/: HostConnection::get() New Host Connection established 0xac3f4f40, tid 6880
D/: HostConnection::get() New Host Connection established 0xaa1bfb40, tid 6925
I/OpenGLRenderer: Initialized EGL, version 1.4
W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without…
D/EGL_emulation: eglCreateContext: 0xae6144e0: maj 3 min 1 rcv 4
D/EGL_emulation: eglMakeCurrent: 0xae6144e0: ver 3 1 (tinfo 0xae612e00)
E/eglCodecCommon: glUtilsParamSize: unknow param 0x000082da
glUtilsParamSize: unknow param 0x00008cdf
glUtilsParamSize: unknow param 0x00008824
D/EGL_emulation: eglMakeCurrent: 0xae6144e0: ver 3 1 (tinfo 0xae612e00)
I/SpeechSampleActivity: serviceType : WEB
E/SpeechRecognizer: [speechRecognizer] Library requires permission android.permission.WRITE_EXTERNAL_STORAGE
Please add a “uses-permission” element in the “AndroidManifest.xml” />
D/EGL_emulation: eglMakeCurrent: 0xae6144e0: ver 3 1 (tinfo 0xae612e00)
E/Surface: getSlotFromBufferLocked: unknown buffer: 0xae6d2280
E/art: No implementation found for boolean com.dialoid.speech.tts.TextToSpeech.isRunningJNI() (tried Java_com_dialoid_speech_tts_TextToSpeech_isRunningJNI and Java_com_dialoid_speech_tts_TextToSpeech_isRunningJNI__)
D/AndroidRuntime: Shutting down VM
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.kakao.sdk.newtone.sample, PID: 6880
java.lang.UnsatisfiedLinkError: No implementation found for boolean com.dialoid.speech.tts.TextToSpeech.isRunningJNI() (tried Java_com_dialoid_speech_tts_TextToSpeech_isRunningJNI and Java_com_dialoid_speech_tts_TextToSpeech_isRunningJNI__)
at com.dialoid.speech.tts.TextToSpeech.isRunningJNI(Native Method)
at com.dialoid.speech.tts.TextToSpeech.isRunning(TextToSpeech.java:393)
at com.dialoid.speech.tts.TextToSpeech.playTTS(TextToSpeech.java:337)
at com.kakao.sdk.newtoneapi.TextToSpeechClient.play(TextToSpeechClient.java:338)
at com.kakao.sdk.newtoneapi.TextToSpeechClient.play(TextToSpeechClient.java:355)
at com.kakao.sdk.newtone.sample.TextToSpeechActivity$1.onClick(TextToSpeechActivity.java:123)
at android.view.View.performClick(View.java:5198)
at android.view.View$PerformClick.run(View.java:21147)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:5417)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
I/Process: Sending signal. PID: 6880 SIG: 9
Process 6880 terminated.

안녕하세요.

카카오 음성 기술에 관심가져 주셔서 감사합니다.

혹시 에뮬레이터로 실행하신건가요?

SDK 내부에는 안드로이드 디바이스에서 작동하는 ARM 프로세서용 라이브러리만 포함되어 있습니다.

감사합니다.