반응형
해당 글에서는 react-native 환경에서 로컬 환경에서 디바이스를 실행할때 발생하였던 오류에 대해 알아봅니다.
1) 문제점
💡 Execution failed for task ':app:createBundleDevDebugJsAndAssets'. 문제가 발생하였습니다.
- 해당 오류는 개발 또는 디버그 빌드 과정에서 발생합니다. 이 오류는 앱의 JavaScript와 assets 번들을 생성하는 과정에서 문제가 있다는 것을 나타냅니다
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed
for task :app: createBundleDevDebugJsAndAssets'.
> Process 'command 'node'' finished with non-zero exit value 1
* Try:
> Run with -stacktrace option to get the stack trace.
> Run with -info or -debug option to get more log output…
> Run with --scan to get full insights.
* Get more help at <https://help-gradle.org>
BUILD FAILED in 2m error Failed
to install the app.
info Run CLI with -verbose flag for more details.
반응형
2) 해결방법
💡 해결방법
- 캐시를 모두 지운 상태로 다시 수행을 하여 해결을 하였습니다.
# yarn 캐시를 초기화 합니다.
$ yarn cache clean
# gradle을 초기화합니다.
$ ./graldew clean
# react-natvie 캐시 초기화 후 실행합니다.
$ npx react-native start --reset-cache
💡 [참고] 해당 해결방법을 수행하도 안되는 경우
- 설치된 앱을 삭제한 뒤 다시 설치하시면 해결이 되었습니다.
오늘도 감사합니다. 😀
반응형