react-native-document-picker랑 연동 시 주의점
두 라이브러리를 같이 사용할 시 ios 경로를 잘못찾는 문제가 있다.
아래와 같이 설정정보를 맞춰주면 ios, android 모두 정상적으로 사용 가능하다.
RNFetchBlob.wrap( Platform.OS === 'ios' ? `${result.uri.replace('file:', '')}` : result.uri, )
RNFetchBlob.wrap( Platform.OS === 'ios' ? `${result.uri.replace('file:', '')}` : result.uri, )