且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在资源路径中找不到com/sun/jna/android-arm/libjnidispatch.so

更新时间:2023-11-17 12:23:04

如果您引用的是"speech-android-wrapper"模块,请在gradle中使用以下配置:

If you're referencing the module of "speech-android-wrapper", please use this configuration in your gradle:

compile project(':speech-android-wrapper')

如果您使用的是AAR库,请尝试以下操作:

If you're using AAR libs, please try this:

dependencies {
  //...
  debugCompile(name:'speech-android-wrapper-debug', ext:'aar')
  releaseCompile(name:'speech-android-wrapper-release', ext:'aar')
}

...

repositories{
  //...
  flatDir{
    dirs 'libs'
  }
}

图标问题已在另一个存储库中得到解决,将很快合并到Watson Developer Cloud存储库中.

Icon issue was resolved already in another repo, will be merged to the Watson Developer Cloud repo soon.

希望有帮助.