728x90
320x100
[문제상황]
앱배포를 준비하기 위해 release용 apk을 빌드하려던 중
아래와 같은 에러가 났다.
> Task :react-native-wheel-pick:verifyReleaseResources FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':react-native-wheel-pick:verifyReleaseResources'.
> A failure occurred while executing co m.android.build.gradle.tasks.VerifyLibraryResourcesTask$Action
> Android resource linking failed
ERROR:/Users/user/Desktop/projectName/node_modules/react-native-wheel-pick/android/build/intermediates/merged_res/release/values/values.xml:2759: AAPT: error: resource android:attr/lStar not found.
react-native-wheel-pick 라이브러리에서 리소스 링킹에 실패했다고 한다. 구체적으로는 values.xml 파일에서 android:attr/lStar 리소스를 찾을 수 없어서 에러가 발생한 것.
[해결]
node_modules의 해당 패키지가 갖고 있는 sdk 버전을 프로젝트의 sdk 버전과 일치시키면 된다.
node-modules/react-native-wheel-pick/android/build.gradle로 들어가서
각 conpileSdkVersion, minSdkVersion, targetSdkVersion부분을
현재프로젝트/android/build.gradle에 있는 버전과 비교하여 수정해주면 된다.
728x90
320x100
'개발일지 > 개발일지! error out🙅' 카테고리의 다른 글
[RN]모듈 중복생성 오류 Native module RNDatePicker tried to overrideRNDatePicker. (0) | 2023.04.07 |
---|---|
[RN]recoil 중복 키값 에러해결Expectation Violation: Duplicate atom key (0) | 2023.03.22 |
[RN]rbenv: pod: command not foundThe `pod' command exists in these Ruby versions: 2.7.5 (0) | 2023.01.17 |
[RN]Drawer Navigator 오류해결 (0) | 2023.01.05 |
[React-Native]ios 빌드오류 삽질기.. (0) | 2023.01.04 |
댓글