美文网首页红叶
React Native 常见错误集

React Native 常见错误集

作者: 红叶丶秋鸣 | 来源:发表于2017-07-13 16:53 被阅读9次

    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 属性:
    <FlatList
      removeClippedSubviews={false}
    />
    
    错误

    解决:


    解决

    相关文章

      网友评论

        本文标题:React Native 常见错误集

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