본문 바로가기

SOLUTION16

M1-docker image pull 요약 - M1 환경에서 docker image를 pull하는 경우 환경 차이로 거부당할 수 있다. Error no matching manifest for linux/arm64/v8 in the manifest list entries Solution docker pull --platform linux/x86_64 {image_name} 2022. 8. 11.
CentOS - 최신 버전 NodeJS 설치 요약 - CentOS의 경우 바로 nodeJS를 설치하면 아주 낮은 버전이 설치될 수 있다. Solution # package update sudo yum -y update # 이미 설치되어 있는 경우 삭제한다.(아닌 경우 생략) sudo yum remove -y nodejs yum install -y gcc-c++ make # 16버전 기준 curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash - sudo yum install -y nodejs 2022. 8. 10.
Android-No signature of method: build_ 요약 - release build 과정에서 해당 이슈로 인해 앱이 실행이 안됩니다. Error * What went wrong: A problem occurred evaluating project ':app'. > No signature of method: build_....android() is applicable for argument types: (build_...) values: [build_...] Solution - app 수준의 build.gradle에서 useProguard제거 // app/build.gradle ... // useProguard 제거한다 useProguard true ... proguardFiles getDefaultProguardFile('proguard-android... 2022. 6. 30.
IOS-유효한 ‘aps-environment’ 인타이틀먼트 문자열을 찾을 수 없습니다. 요약 - IOS Build상황에서 코드에 있는 PUSH 서비스를 IOS에 등록하지 않아 앱이 구동이 되지 않습니다. Error 응용 프로그램을 위한 유효한 ‘aps-environment’ 인타이틀먼트 문자열을 찾을 수 없습니다. Solution Runner -> Signing & Capabilities -> Capability + 버튼 클릭 -> Push Notifications 추가 2022. 6. 30.
반응형