본문 바로가기
모바일 앱/React Native

[React Native] Execution failed for task ':app:checkDebugAarMetadata'.

by 테크케찰 2021. 9. 5.

앱 빌드하는 과정에서 아래 사진과 같은 에러가 발생했습니다.

프로젝트 폴더에 /android/app/build.gradle 로 들어가서 allprojects 내부를 다음과 같이 수정해줍니다.

allprojects {
    repositories {
    	...
        mavenCentral()
        mavenLocal()
        jcenter()
       	...
    }
}

저같은 경우는 jcenter()가 없어서 발생한 버그였습니다.

 

 

참고

https://stackoverflow.com/a/68841906/15458307

 

Error when trying to run my React Native app on Android

I've built my React Native app and tested and troubleshooted with my iOS devices for months. Now I'm trying to built and test the app on Android for the first time. The thing is, that I keep getting

stackoverflow.com