본문 바로가기
React/React native

[RN] React-native android 빌드시 오류(Android project not found.)

by Minius 2020. 5. 12.
반응형

error Android project not found. Are you sure this is a React Native project? If your Android files are located in a non-standard location (e.g. not inside 'android' folder), consider setting `project.android.sourceDir` option to point to a new location. Run CLI with --verbose flag for more details.

 

해당 오류가 나올 경우가 있다.

 

분명 어제까지 잘 됐는데...?

 

해서 알아보니

 

  1. 설정 파일 삭제

  2. React-native 업그레이드

두가지 방법이 있다.

 

1. 설정 파일 삭제

해당 프로젝트의 root 폴더로 가서

 

android -> app -> build -> intermediates -> signing_config -> debug -> out -> signing-config.json

 

해당 파일을 삭제한다.

 

그리고 다시 실행.

 

2. React-native 업그레이드

명령어 "react-native upgrade" 를 실행한다.

 

그리고 다시 실행.

 

댓글