Ma zhichao
Results
1
comments of
Ma zhichao
> 请问是react native的那个版本啊? 现在用的`react-native 0.57+`新建项目后用的`gradle 4.4`和`com.android.tools.build:gradle:3.1.4` 需要修改`build.gradle`如下,不然会报错 ```gradle android { compileSdkVersion 26 // 从25改为26 ...... } // 需要将dependencies里面的compile改为implemention dependencies { implementation "com.facebook.react:react-native:+" implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.0.5.1' implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.0.5.1' // 没有使用特殊Header,可以不加这行 } ```