전체 글
-
GADInvalidInitializationExceptionReact native 2021. 12. 30. 11:55
개발중인 스마트폰 어플리케이션에 admob을 연동해 두었는데 다음과 같은 에러가 발생하였음 에러 전문은 아래와 같다. Application Specific Information: dyld4 config: DYLD_ROOT_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot CoreSimulator 783.5 - Device: iPhone 12 (D075E95B-E372-45A6-9610-3464008BD049) - Runtime: iOS 15.2 (19..
-
m1 react native pod install errorReact native 2021. 12. 26. 10:56
https://github.com/CocoaPods/CocoaPods/issues/10723#issuecomment-864408657 pod install has bug · Issue #10723 · CocoaPods/CocoaPods the environment is: mac mini , Apple M1, macOS Big Sur 11.4, flutter sdk 1.22.2 pod 1.10.1 Sudo version 1.9.5p2 Sudoers policy plugin version 1.9.5p2 Sudoers file grammar version 48 Sudoers I/O plu... github.com m1 mac 에서 react native pod install 안되는 경우 sudo arch -x..
-
zsh syntax hightlight 적용개발 환경 설정 2021. 12. 26. 00:36
맥에서 zsh 사용시sytax hightlight 적용하면 타이핑시 가독성이 올라간다. #1 zsh-syntax-highlighting 설치 brew 를 이용해 설치 합니다. brew install zsh-syntax-highlighting ➜ ~ brew install zsh-syntax-highlighting Running `brew update --preinstall`... ==> Auto-updated Homebrew! Updated 2 taps (homebrew/core and homebrew/cask). ==> Updated Formulae Updated 25 formulae. ==> Deleted Formulae exomizer ==> Updated Casks Updated 36 casks...
-
Docker mariadb 로컬에 디비 연동하기Docker 2021. 12. 25. 23:41
개발 환경 맥북, M1, Monterey Docker desktop 도커에 mariadb 설치후 데이터베이스는 로컬(맥 os)과 연동하도록 하자. 컨테이너를 종료시켜도 디비 자체는 없어지지 않도록 로컬에 연동하는 것이 포인트 #1 docker maria image 가져오기 docker pull mariadb Using default tag: latest latest: Pulling from library/mariadb a39c84e173f0: Pull complete 19c05479159a: Pull complete 7a3fae4be7ce: Pull complete c6f314de44c1: Pull complete 37a2529e55ed: Pull complete 0e027baf10a6: Pull com..
-
mariadb 특정 계정 외부 접속 허용하기데이터베이스 2021. 12. 25. 09:57
스프링 부트 서버를 도커 컨테이너로 만들고, 해당 도커에서 맥북에 설치된 마리아로 접속이 필요했다. mysql show databases; use mysql; show tables; select host, user, password from user; grant all privileges on *.* to 'root'@'%' identified by 'password'; flush privileges; 위와같이 명령어 입력하면된다. 위의 경우 root계정은 모든 아이피로부터 해당 디비에 접속 할 수 있게 설정 한 것 내부 개발용으로 간편하게 설정하려고 위와같이 한 것 이므로 실제 적용할때는 보안사항을 검토 필요 password 에는 자신의 패스워드를 기입