목록전체 글 (14)
을왕라의 정리함
release용 apk파일을 만들기위해 ./gradlew app:assembleRelease 명령어를 입력했는데 20분동안... 빌드가 끝나지 않았다. 빌드를 종료시키고 ./gradlew해서 프로젝트를 리프레시하려고 했는데 에러가 발생했다. 내용 Owner PID: 70863 Our PID: 60432 Owner Operation: ... 해결법 Owner PID를 kill 해준다. sudo kill -9 [pid] 이유 빌드가 끝나지 않아 컨트롤 +C로 빌드를 강제 종료시켰을 때 제대로 종료되지 않아 발생한 문제 같다.
1. appcenter 계정 생성 https://appcenter.ms/ Visual Studio App Center | iOS, Android, Xamarin & React Native Ship fixes and enhancements as fast as you build them. Whether you prefer private distribution, public open betas, Microsoft Intune, TestFlight, Google Play, or the App Store, App Center makes releasing your app a delight. appcenter.ms 앱 센터에 어플을 등록할 때 ios와 android를 따로 작업해 주어야하기 때문에 앱 센터 프로젝트 ..

npm start로 rn 서버를 연 후에 npm run ios/android를 입력하면 ios/android 시뮬레이터를 열 수 있다. 정확하지는 않지만 react-native버전과 xcode의 버전에 따라 default로 실행되는 시뮬레이터가 달라지는 것 같다.(가장 최신으로 실행되는 듯) 14.4를 개발을 진행하던 중 xcode업데이트가 자동적으로되어 빌드가 되지 않는 지옥에 빠지고 말았고 xcode버전을 낮추고 낮은 버전의 시뮬레이터를 실행시켜주기 위해 특정 시뮬레이터를 실행시키는 방법을 찾아보았다. 1. 시뮬레이터 리스트 xcrun simctl list devices 를 입력해 가능한 시뮬레이터 리스트를 출력한다. 출력된 시뮬레이터리스트중에 원하는 시뮬레이터를 선택해 진행 2. 시뮬레이터 실행 n..