본문 바로가기

app

(4)
unsupported OS version 현재 가지고있는 버전들 아이폰 버전 ios별 https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport
android 배포 이슈 1. Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package [Package name] signatures do not match previously installed version -> 삽질 많이했는데 기존의 시뮬레이터가 메모리를 잡고있어서 그런거였다. 시뮬레이터 끄고 컴퓨터 껐다 키니까 됨ㅎㅎ 2. failed to read PNG signature: file does not start with PNG signature. -> 분명 png파일인데 왜 png가 아니라 하는지ㅜ ./android/app/build.gradle에서 android { buildTypes { release { crunchPngs false
ipad simulator에서 화면이 꽉 차게 나오지 않을 때 ipad에서 첫 테스트를 했다 시뮬레이터를 켜보니 이렇게 나왔다 ㅋㅋㅋㅋㅋ얼탱쓰 해결은 xcode에서 General -> Deployment Info -> iPad 체크박스 활성화하니 됐다
react native를 사용한 모바일 앱 개발/배포 우리 연구소에서 발간하는 기술 잡지를 모바일 앱으로도 확인할 수 있도록 react native를 사용한 앱을 만들었다 0) 개발자 계정 가입 ios - https://developer.apple.com/ / https://appstoreconnect.apple.com/apps android - https://play.google.com/console/u/0/developers/7621581934450815956/app-list 1) 환경 구축 react native cli를 통한 환경 구축 https://reactnative.dev/docs/environment-setup 2) 개발 npx react-native start --reset-cache npx react-native run-ios npx re..