728x90

Development/Error 25

[error] stomp/stompjs 안드로이드 연결 안됨...

디버그로 찍어보면 이렇게만… ios는 정상적으로 연결 구글 검색 다 해보고androidManifest.xml 파일에           android:usesCleartextTraffic="true"          코드도 다 적용되어 있는데도 안됨…😂😂 혹시 몰라서 Client.d.ts 에서 속성들을 하나씩 살펴보았다....forceBinaryWSFrames....!!!!속성을 지정할 수 있다고 나왔다! 내 코드는 아래와 같은데,  const client = new Client({    brokerURL: 내 url,    forceBinaryWSFrames: true,     //이거 추가    onConnect: () => {      console.log('Connected ======>', P..

Development/Error 2025.04.07

[error] react-native-google-signin/google-signin [Error: DEVELOPER_ERROR]

검색해 보면 DEVELOPER_ERROR는 무조건 SHA-1 키 때문이라고 하던데,, 나는 잘 입력한 것 같은데 계속 안되길래 머리가 지끈했다.결론 : 공식문서 잘 보자https://react-native-google-signin.github.io/docs/setting-up/get-config-file Obtaining configuration information | React Native Google Sign InBefore getting your hands dirty with code, some configuration needs to be taken care of. Be patient, this is the most complex part of the setup.react-native-googl..

Development/Error 2025.03.26

[error] The Swift pod FirebaseStorage depends upon FirebaseAppCheckInterop, FirebaseAuthInterop, FirebaseCore, FirebaseCoreExtension, and GoogleUtilities, which do not define modules. To opt into those targets generating module maps (which is necessary to

프로젝트에 파이어베이스 연동 중 ios 빌드과정에서 발생한 에러 해결1. Podfile에서 use_modular_headers! 사용...platform :ios, min_ios_version_supportedprepare_react_native_project!use_frameworks! //추가use_modular_headers! //추가... 2.  Podfile에서 특정 Pod에 대해 :modular_headers => true 사용target 'AllMyFavorite' do  config = use_native_modules!  pod 'Firebase/Storage', :modular_headers => true //추가  pod 'Firebase/Auth', :modular_headers..

Development/Error 2025.03.26

[error]모달이 덜덜 떨리는 현상 수정

바텀 모달에서 새로운 바텀모달을 열었더니 덜덜 떨린다.  수정한 모달은 떨리지 않는다.계속 뭘까 이것, 저것 시도를 해보았다.왜 떨릴까 생각하니까 높이(위치)때문인가? 하는 의문에 높이를 지정해 보았더니딱! 멈추었다. 나의 경우 이메일 주소를 입력해야 해서 키보드가 위로 올라와야 했고,KeyboardAvoidingView를 사용했다. [수정한 코드]       behavior={Platform.OS === 'ios' ? 'padding' : 'height'}      style={{        backgroundColor: '#fff',        borderTopRightRadius: 15 * width,        borderTopLeftRadius: 15 * width,      }}>    ..

Development/Error 2025.03.18

[error] Possible unhandled promise rejectionError: [database/permission-denied] Client doesn't have permission to access the desired data

위 에러는 Firebase와 같은 데이터베이스에서 권한 설정이 제대로 되어있지 않음을 나타낸다.해결방법 : 사용하는 부분에 대한 규칙 확인 및 수정 나는 storage와 realtime database를 사용하고 있었고,해당 규칙은 다음과 같이 변경하였더니 정상 작동하였다. 어쩐지 알람이 많이 와있었는데, 규칙을 변경하지 않으면 사용을 중지시킬 것이라는 내용이었고,수정 전 realtime database 규칙은{  "rules": {    ".read": "now     ".write": "now   }}이렇게 적혀있었다.  1. Firebase Realtime Database 규칙 확인 및 수정 {  "rules": {    ".read": "auth != null",    ".write": "auth..

Development/Error 2024.06.27

[error] If you need to have openjdk@17 first in your PATH, run:echo 'export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"' >> ~/.zshrc

빌드가 안됨.  echo 'export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"' >> ~/.zshrc//코드 그대로 붙여넣고 실행하면~/.zshrc 파일에export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"이런 내용이 추가된다. 추가했으니 저장source ~/.zshrc 하고 다시 npm start 하면 정상 빌드 되었다.

Development/Error 2024.02.15

[error] You don't have write permissions for the /Library/Ruby/Gems/2.6.0 directory.

gem install bundler 입력 시 만난 에러[error] You don't have write permissions for the /Library/Ruby/Gems/2.6.0 directory. Homebrew 이용 1. brew update2. brew install rbenv ruby-build // 설치 가능한 루비 조회3. rbenv install -l 4. rbenv install 3.3.0 // 글로벌 버전 설정5. rbenv global 3.3.0 // 버전 확인6. rbenv versions  !!! 그리고 중요! rbenv PATH를 추가한다 7. vi ~/.zshrc //입력! [[ -d ~/.rbenv  ]] && \  export PATH=${HOME}/.rbenv/bin..

Development/Error 2024.02.15

[error] 'appcast' stanza failed with: Calling the `appcast` stanza is disabled! Use the `livecheck` stanza instead.

Java -version : 21app에서 사용하는 버전은 11 열심히 구글링... $ brew install --cask adoptopenjdk11이것도 안되고$ brew install --cask adoptopenjdk/openjdk/adoptopenjdk11이것도 안된다. 에러 해결 이후 발견한 방법brew install openjdk@17brew install openjdk@11해결 : 터미널 창에서1.   /usr/libexec/java_home -V.            // 입력 나는 정말 많이 설치가 되어 있었다.. 버전도 다양하고 중복되고ㅎ 그래서 안되었나 그리고 환경변수를 설정하라는데, 그것도 잘 모르겠고, 나는 openjdk11 하나만 필요해서 11을 제외하고 다 삭제하기로 했다. 그..

Development/Error 2024.02.15
728x90