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

2018-11-22  本文已影响0人  Demon_eef6

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', '+')}"

}

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

上一篇 下一篇

猜你喜欢

热点阅读