해결된 질문
작성
·
87
0
❗질문 작성시 꼭 참고해주세요
최대한 상세히 현재 문제(또는 에러)와 코드(또는 github)를 첨부해주셔야 그만큼 자세히 답변드릴 수 있습니다.
맥/윈도우, 안드로이드/iOS, ReactNative, Node 버전 등의 개발환경도 함께 적어주시면 도움이 됩니다.
에러메세지는 일부분이 아닌 전체 상황을 올려주세요. (일부만 자르거나 일부만 복사해서 올려주시면 답변이 어렵습니다.)
[2-5]RN Drawer 관련 강의를 들으며, 따라한 이후,,, 빌드도 오류가 나고,,, 하기의 에러 메세지가 나와서, 이후 진도를 따라갈 수가 없습니다...😂😂
강사님 강의를 들으며,, 이전에 동일한 오류로 질문을 올려주신 분들의 레퍼런스도 다 해보고,, 구글링한 결과로도 해봤는데,,, 어느 부분이 문제인지,,, 3일째,,, 진도를 못나가고 있습니다...ㅠ
어떤 부분을 수정해야 할 지,,, 도움을 주시면,,,, 감사하겠습니다...!
개발환경
윈도우
안드로이드
ReactNative 버전: 0.72.6
에러메세지
> Task :react-native-reanimated:compileDebugJavaWithJavac FAILED
Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
See https://docs.gradle.org/8.0.1/userguide/command_line_interface.html#sec:command_line_warnings
80 actionable tasks: 69 executed, 11 up-to-date
info 💡 Tip: Make sure that you have set up your development environment correctly, by running react-native doctor. To read more about doctor command visit: https://github.com/react-native-community/cli/blob/main/packages/cli-doctor/README.md#doctor
Warning: SDK processing. This version only understands SDK XML versions up to 3 but an SDK XML file of version 4 was encountered. This can happen if you use versions of Android Studio and the command-line tools that were released at different times.
```
37 errors
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':react-native-reanimated:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.
* 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 13s
info Run CLI with --verbose flag for more details.
답변 2
0
0
안녕하세요, 인프런 AI 인턴입니다.
yhs05026님이 겪고 있는 오류는 react-native-reanimated
와 관련된 자바 컴파일 오류로 보입니다. 이 문제는 여러 가지 이유로 발생할 수 있으며, 주로 개발 환경이나 프로젝트 설정과 관련이 있습니다. 이 문제를 해결하기 위해 몇 가지 조치를 취해보세요.
Gradle 및 Android Studio 버전 확인하기:
react-native-reanimated 라이브러리 버전 확인:
react-native-reanimated
의 호환 가능한 버전을 사용해야 합니다. 특히, 리액트 네이티브 0.72.6과 호환되는 버전을 사용하는 것이 중요합니다. 최신 버전을 사용해보거나, 이전에 문제 없이 사용했던 버전으로 다운그레이드 해보세요.빌드 캐시와 node_modules 정리:
cd android
./gradlew clean
rm -rf node_modules
yarn cache clean
yarn install
yarn start --reset-cache
Java 및 JDK 설정 확인:
이전 해결 방안 참고하기:
최종 확인:
react-native run-android
위에 언급한 방법들을 시도한 후에도 문제가 해결되지 않는다면, react-native-reanimated
의 GitHub 리포지토리 이슈 페이지에서 비슷한 문제를 찾아보고 해결 방법을 찾아보세요.
저는 질문자님의 이해를 돕고자 지식공유자님의 기존 답변을 참고하여 유사한 답변 링크를 추천해드리고 있습니다.
현재 베타 기능으로 답변이 만족스럽지 않을 수 있는 점 양해 부탁드립니다. 🙏
추가적으로 궁금한 점이 있으시면, 이어서 질문해 주세요. 곧 지식공유자께서 답변해 주실 것입니다.