Problems trying to build PocketSphinx for Android using NDK

前端 未结 2 1233
一向
一向 2020-12-31 21:33

I\'m trying to build PocketSphinx for Android using the PocketSphinxAndroidDemo project. I\'ve given up om my quest to build it using Cygwin and Windows and installed an Ubu

2条回答
  •  孤独总比滥情好
    2020-12-31 21:46

    Modify jni/Android.mk file

    Change Line 162 :

    LOCAL_STATIC_LIBRARIES := sphinxutil sphinxfe sphinxfeat sphinxlm pocketsphinx
    

    to :

    LOCAL_STATIC_LIBRARIES := pocketsphinx sphinxlm sphinxfeat sphinxfe sphinxutil
    

    That will resolve your issue.

提交回复
热议问题