美文网首页
react-native-vector-icons安装问题使用问

react-native-vector-icons安装问题使用问

作者: Demon_eef6 | 来源:发表于2018-11-22 12:28 被阅读0次

react-native-vector-icons图标库安装以后,按照github流程配置以后,安卓编译还是报错,RN版本0.56.0;

一般都是node_modules/react-native-icons/android/build.gradle文件里面

buildscript {

  repositories {

    jcenter()

    google() // 这里注释掉

  }

  dependencies {

     classpath 'com.android.tools.build:gradle:3.1.4' // 这里删除

     classpath 'com.android.tools.build:gradle:2.3.+'       

  }

}

.....

dependencies {

  implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}" // 这里删除

    implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"

}

以上安卓就能正常编辑通过了。

相关文章

网友评论

      本文标题:react-native-vector-icons安装问题使用问

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