전체 글18 [minSdkVersion] Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 18 dered in library : [RN Android Error] 오류사항 캡쳐 에러 메세지 : [minSdkVersion] Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 18 dered in library [minSdkVersion] Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 18 dered in library 해결방법 Android/build.gradle 에서 minSdkVersion = 18 로 변경 해결 내용 캡쳐 오류 사항 FAILURE: Build failed with an exception. What went wrong: Execution failed fo.. 2022. 7. 27. [RN] 에러 - @react-native-community의 native_modules.gradle를 못찾을 때 > Could not read script 'my-code-path\node_modules\@react-native-community\cli-platform-android\native_modules.gradle' as it does not exist. > Could not read script 'my-code-path\node_modules\@react-native-community\cli-platform-android\native_modules.gradle' as it does not exist. 위와 같은 에러를 만난다면 Android cli 패키지를 수동으로 설치하면 해결된다. npm i @react-native-community/cli-platform-android 2022. 7. 27. npm ERR! Maximum call stack size exceeded npm ERR! Maximum call stack size exceeded 위와 같은 Maximun call stack size 에러를 만난다면 먼저 npm 캐시를 지워준다. npm cache clean --force 그 다음 npm을 재빌드 해준다. npm rebuild 그리고 프로젝트 디렉토리에 있는 노드 모듈을 한번 지워준다. rm -rf node_modules 마지막으로 프로젝트 디렉토리에서 다시 노드 모듈(node_module)을 설치해준다. npm install 2022. 7. 27. npm ERR! Error: EPERM: operation not permitted, rename npm ERR! Error: EPERM: operation not permitted, rename 위와 같은 에러를 만난다면 아래와 같은 절차를 거쳐 수정하면 된다. 1. clean cache with (npm 캐시를 한번 지워준다) npm cache clean --force 2. install the latest version of npm globally as admin: (npm을 글로벌로 최신버전으로 재 설치 해준다) npm install -g npm@latest --force 3. clean cache with (다시 한번 npm 캐시를 지워준다) npm cache clean --force 4. Try to install your component once again. (다시 패키지를 설치 해준다.. 2022. 7. 27. 이전 1 2 3 4 5 다음