美文网首页
react-native-image-crop-picker 配

react-native-image-crop-picker 配

作者: 羞涩的二黄 | 来源:发表于2019-01-16 18:47 被阅读0次

react-native-image-crop-picker 配置集成

git地址:https://github.com/ivpusic/react-native-image-crop-picker

1. npm install react-native-image-crop-picker --save 

2.  react-native link react-native-image-crop-picker

安卓配置,执行上面两个命令就ok了,如果要手动的话,需要配置以下信息

1.在android/build.gradle添加以下代码

allprojects { 

repositories { 

mavenLocal() 

jcenter() 

maven { 

url"$rootDir/../node_modules/react-native/android"

//我是要添加的... 

maven { url"https://jitpack.io"} }}

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

android {

 ... defaultConfig

 {

//我是要添加的....vectorDrawables.useSupportLibrary =true... 

 } ...}

到此为止,android集成完了,ios我本人未用到,可以参考其他文档。

相关文章

网友评论

      本文标题:react-native-image-crop-picker 配

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