상세 컨텐츠

본문 제목

[Flutter] build 시 발생하는 gradle 버전 경고 해결

카테고리 없음

by theseung 2022. 1. 7. 19:25

본문

반응형

경고 문구

Warning: Mapping new ns http://schemas.android.com/repository/android/common/02 to old ns http://schemas.android.com/repository/android/common/01
Warning: Mapping new ns http://schemas.android.com/repository/android/generic/02 to old ns http://schemas.android.com/repository/android/generic/01
Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/addon2/02 to old ns http://schemas.android.com/sdk/android/repo/addon2/01
Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/repository2/02 to old ns http://schemas.android.com/sdk/android/repo/repository2/01
Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/sys-img2/02 to old ns http://schemas.android.com/sdk/android/repo/sys-img2/01

 

해결 방법

 - gradle 최신 버전 업데이트 

 

1. gradle 최신 버전 확인

https://maven.google.com/web/index.html?q=om.android.tools.build#com.android.tools.build:gradle 

(버전 선택 시 https://services.gradle.org/distributions/ 해당 페이지에 해당 버전에 대한 all 파일이 올라와 있는지 확인 필요)

(아무래도는 rc버전이나 alpha 버전보다 안정성 있는 버전 사용 권장..)

 

2. android/build.gradle 수정 (작성 기준 com.android.tools.build.gradle-7.0.2)

dependencies {
        classpath 'com.android.tools.build.gradle-7.0.2'

 

3. android/gradle/wrapper/gradle-wrapper.properties 수정

distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip

 

4. 빌드 후 정상 작동 확인 후 android/.gradle에 구버전 삭제

반응형

댓글 영역