美文网首页
couldn't find DSO to load: libjs

couldn't find DSO to load: libjs

作者: 溜溜的阳光 | 来源:发表于2019-08-16 01:59 被阅读0次

react-native 在android运行的时候

androidStudio工作台的logcat报错: couldn't find DSO to load: libjscexecutor.so

已解决:参考-https://github.com/facebook/react-native/issues/25537

在app / build.gradle中添加以下代码

def useIntlJsc = false

在依赖中添加以下内容

if (useIntlJsc) {

    implementation 'org.webkit:android-jsc-intl:+'

} else {

    implementation 'org.webkit:android-jsc:+'

}

对我来说,修复过

maven {

      // Android JSC is installed from npm

      url("$rootDir/../node_modules/jsc-android/dist")

    }

相关文章

网友评论

      本文标题:couldn't find DSO to load: libjs

      本文链接:https://www.haomeiwen.com/subject/alyxsctx.html