Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 티스토리챌린지
- 코딩테스트
- 프로그래머스
- error
- 스파르타코딩클럽
- 프로젝트 셋팅
- 모던 자바스크립트
- git
- deep dive
- 자주 까먹는
- 셋팅
- vscode
- 리터럴
- useRouter
- 내일배움캠프
- 구글 로그인
- Next
- CORS
- 코테
- 초기셋팅
- vercel
- js
- React
- 모던자바스크립트
- 소셜 로그인
- 코드카타
- domain
- nextjs
- array정적메서드
- 오블완
- Today
- Total
파피루스
[Error] Could not move temporary workspace 본문
에러 메세지
FAILURE: Build failed with an exception.
* What went wrong:
java.io.UncheckedIOException: Could not move temporary workspace (C:\Users\happy\project\mobile\android\.gradle\8.6\dependencies-accessors\423f0288fa7dffe069445ffa4b72952b4629a15a-c6373ed8-1955-4558-9396-8e5b76b1e878) to immutable location (C:\Users\happy\project\mobile\android\.gradle\8.6\dependencies-accessors\423f0288fa7dffe069445ffa4b72952b4629a15a)
> Could not move temporary workspace (C:\Users\happy\project\mobile\android\.gradle\8.6\dependencies-accessors\423f0288fa7dffe069445ffa4b72952b4629a15a-c6373ed8-1955-4558-9396-8e5b76b1e878) to immutable location (C:\Users\happy\project\mobile\android\.gradle\8.6\dependencies-accessors\423f0288fa7dffe069445ffa4b72952b4629a15a)
참고❗) 구글링해보면 대부분 gradle 버전을 업/다운그레이드하라고 했으나,
내 상황에서는 버전 상관없이 계속 문제가 생겼다. (8.6버전 사용중)
1. 일단 다른 건 OK인지 확인해보자
npx react-native doctor
2. gradle 캐시, 이전 빌드 삭제
rm -rf android/.gradle
rm -rf android/build
묻지도 따지지도 말고 걍 삭제하는 옵션(-rf)이기에 프로젝트, 폴더 위치 잘 보고 실행하자
3. gradle 설정 초기화
cd android
./gradlew clean
이제 다시 start 해보면 해결된 모습을 볼 수 있다.
(안되면 start할 때 --reset-cache 옵션을 사용해보세요)
yarn run start
참고 링크
- https://github.com/gradle/gradle/issues/27844
'React Native' 카테고리의 다른 글
[android] splash 적용하기 (1) | 2024.10.31 |
---|---|
Component 의 종류 (1) | 2024.10.16 |