본문 바로가기

ReactNative

(3)
ReactNative - pod install 시 `conflicting_dependencies': undefined method `request' for nil:NilClass` 에러 Notifee 라이브러리를 설치 후 pod install 진행 시 다음과 같은 에러가 발생했다. ( Notifee에 의한 오류인지는 불명확했다. ) Ignoring ffi-1.16.3 because its extensions are not built. Try: gem pristine ffi --version 1.16.3 /opt/homebrew/Cellar/ruby/3.2.2_1/lib/ruby/3.2.0/rubygems/resolver/conflict.rb:47:in `conflicting_dependencies': undefined method `request' for nil:NilClass (NoMethodError) [@failed_dep.dependency, @activated.request.d..
Xcode > Sandbox : deny(1) file-write-create Error Xcode 에서 갑자기 Sandbox: bash(2081) deny(1) file-write-create /Users/judekim/Library/Developer/Xcode/DerivedData/emanbae-hjawocowjyeobhbktmednwwmzblh/Build/Products/Debug-iphoneos/emanbae.app/ip.txt 이와 같은 메시지가 뜨면서 빌드가 실패했었다. 이전에 Ruby 관련한 버전 이슈가 생겨서 그것도 해결하는데 한참 헤맸는데, 이건 또 무슨.. 일인가 싶어서 찾아봤는데, ChatGPT는 헛소리를 작렬.. 그러다 찾은 것이 설정을 변경하면 해결된다고 해서 찾았다. Xcode > Targets를 눌러서 Build Settings의 데이터 중에 User Script ..
[React-Native] WebView iOS 에서 스크롤이 느릴때 React-Native로 WebView를 기반으로 한 App을 개발하고 있는데, iOS에서 유난히 Scroll 이 짧게 이루어진다는 것을 느꼈다. 말로 표현하기 어려운데, 스크롤 시 얼마만큼 스크롤을 하느냐에 따라 관성이 동작하는 그 기본 느낌이 없었다. 마치 정해진 위치만큼만 스크롤하도록 단위가 정해진 느낌?이랄까? 우선 React Native WebView의 속성을 찾아봤다. https://github.com/react-native-webview/react-native-webview/blob/master/docs/Reference.md 여기에서 체크해 본 것이 - pagingEnabled : If the value of this property is true, the scroll view stops ..