1. react native 0.62 업데이트 후 multipart/form-data 업로드 안됨.
After upgrading from 0.61.4 to 0.62.0 the app will not upload files anymore from Android
https://github.com/facebook/react-native/issues/28551
2. Image with auth Bearer
https://stackoverflow.com/questions/36675682/react-native-image-with-bearer-authentication-token
3. Warning with Async Storage
Warning: Async Storage has been extracted from react-native core…'?
npm i @react-native-community/async-storage
or
yarn add @react-native-community/async-storage
4. useSelector not updating when store has changed in Reducer
the problem your facing is very common when handling with objects, the props do not change because you're changing an object property but the object itself does not change from the react side.
even when you're giving it a whole new object react doesn't see the property object change because the reference stays the same.
와우!