React-Native
-
[React-Native]react-native bottomSheetModal not workingReact-Native 2023. 3. 10. 17:45
문제점 기존 앱 개발을 안드로이드 지원할 생각이 없었는데, 안드로이드를 지원하게 되면서 기존에 사용하던 react-native-bottom-sheet 란 라이브러리가 작동이 안되었다.. https://github.com/gorhom/react-native-bottom-sheet 해결방법 index.js /** * @format */ import {gestureHandlerRootHOC} from 'react-native-gesture-handler'; import {AppRegistry} from 'react-native'; import App from './App'; import {name as appName} from './app.json'; AppRegistry.registerComponent(ap..
-
[React-Native / Xcode]Unable to load contents of file list: '/Target Support Files/Pods-MyButler/Pods-MyButler-resources-Debug-output-files.xcfilelist' 오류 해결React-Native 2023. 2. 26. 15:10
회사에서 사용하는 노트북은 인텔칩이고, 개인 노트북은 M1칩인데 둘 다 동일한 로직으로 앱을 빌드하는데 M1일때만 Unable to load contents of file list: '/Target Support Files/Pods-MyButler/Pods-MyButler-resources-Debug-output-files.xcfilelist' 해당 오류가 나서 찾아보니 M1칩에서만 일어나는 오류 같았다. 일단 해결 방법을 먼저 말하고 왜 이런 오류가 일어나는 지는 더 찾아봐야 할 것 같다. Unable to load contents of file list: '/Target Support Files/Pods-MyButler/Pods-MyButler-resources-Debug-output-files.xc..