본문 바로가기
시작하는 개발 노트/개발 오류 모음

안드로이드 - A problem was found with the configuration of task..

by 개발하는언니 2020. 12. 27.

안드로이드 스튜디오 설치 후 Run을 실행해 봤는데 아래와 같은 오류가 나왔습니다...

 

A problem was found with the configuration of task ':app:processDebugManifest' (type 'ProcessMultiApkApplicationManifest').

> File 'F:\Application\app\build\intermediates\merged_manifest\debug\out\AndroidManifest.xml' specified for property 'mainMergedManifest' does not exist.

 

해결할 수 있는 방법은 Gradle Scripts -> build.gradle 에서 

변경전
dependencies 
{
classpath "com.android.tools.build:gradle:4.1.1" // 이부분을 변경하셔야합니다!
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}

변경후
dependencies 
{
classpath "com.android.tools.build:gradle:4.0.2" // 이렇게 변경해주세요
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}

위 처럼 수정해주세요!

 

Gradle Scripts -> gradle-wrapper.properties 에서 

변경전
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
# 이부분을 변경하셔야합니다!


변경후
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-all.zip # 이렇게 변경해주세

 

위 처럼 수정하셔야 합니다!

다시 Run을 하시면 아래 이미지처럼 다운로드가 시작됩니다!

 

다시 activity_main.xml 에 들어가서 Run을 실행하면 정상적으로 실행이 됩니다!

댓글