React Native Duplicate resources

前端 未结 8 645
感情败类
感情败类 2020-12-06 06:10

After upgrading to React Native 0.57 i am facing an issue when genrating APK in react-native-router-flux.when executing the .\\gradlew assembleRelease i get below error :-<

8条回答
  •  既然无缘
    2020-12-06 06:50

    You can try to clean catch memory and reinstall node modules

    watchman watch-del-all
    rm -rf node_modules && npm install
    rm -fr $TMPDIR/react-*
    npm cache clean
    npm start -- --reset-cache
    

    It's work for me.

提交回复
热议问题