본문 바로가기

rn11

[React Native] Error type 3 Error: Activity class does not exists. react-native run-android 명령어를 이용해 앱을 실행할 때 가끔씩 이런 에러 메시지가 뜨는 경우가 있습니다. adb uninstall `패키지명` 위 명령어를 이용해 디바이스 혹은 에뮬레이터에 설치된 해당 앱을 완전히 삭제해주신 뒤 다시 앱을 실행하게 되면 정상적으로 작동합니다. 2021. 10. 3.
[React Native] Jest / SyntaxError: Cannot use import statement outside a module React Native에서 jest로 테스트 코드를 작성 중 다음과 같은 에러를 마주쳤습니다. react-native-vector-icons를 다운받고 import하고 사용할 때 발생한 버그인데요, package.json 파일에 아래 문장을 추가해주어 문제를 해결하였습니다. { "jest":{ ... "transformIgnorePatterns": [ "node_modules/(?!react-native|react-navigation)/" ] ... } } 2021. 9. 6.
[React Native] Execution failed for task ':app:checkDebugAarMetadata'. 앱 빌드하는 과정에서 아래 사진과 같은 에러가 발생했습니다. 프로젝트 폴더에 /android/app/build.gradle 로 들어가서 allprojects 내부를 다음과 같이 수정해줍니다. allprojects { repositories { ... mavenCentral() mavenLocal() jcenter() ... } } 저같은 경우는 jcenter()가 없어서 발생한 버그였습니다. 참고 https://stackoverflow.com/a/68841906/15458307 Error when trying to run my React Native app on Android I've built my React Native app and tested and troubleshooted with my iOS.. 2021. 9. 5.
[React Native] iOS Simulator, Device에서 Debug menu가 열리지 않는 경우 오늘 iOS 빌드를 하다가 debug menu가 열리지 않는 현상이 발생했습니다. ios device를 흔들고, cmd+D 버튼을 눌렀음에도 debug menu가 열리지 않아 이 현상에 대해 찾아보았습니다. xcode에 들어가 edit scheme 버튼을 누르면 다음과 같은 창이 뜨는데요, Build Configuration 부분이 Debug로 되어 있는지 확인해보아야 합니다. 저 같은 경우는 이 부분이 release로 되어 있어서 디버그 메뉴가 열리지 않았습니다. 참고 https://github.com/facebook/react-native/issues/25246#issuecomment-502407014 can not open developer menu , iOS · Issue #25246 · face.. 2021. 8. 23.