React Native 常见错误集

Execution failed for task ':app:prepareSrolkReactNativeFilePickerUnspecifiedLibrary'.

Could not expand ZIP .....node_modules\react-native-file-picker\android\build\outputs\aar\react-native-file-picker-release.aar
(on windows):

解决:

## windows 不加 ./
$ cd android && ./gradlew clean
$ cd .. && react-native run-android

Failed to finalize session

一般来说,是因为包名和签名的信息与原先手机上的冲突,最简单的方式,通过adb uninstall packageName将原来的App卸载干净,重新执行就可以成功了。

  1. 解决 FlatList 需要拖动一下才显示的问题
    添加 removeClippedSubviews 属性:

React Native 常见错误集_第1张图片
错误

解决:


React Native 常见错误集_第2张图片
解决

你可能感兴趣的:(React Native 常见错误集)