본문 바로가기

유니티/오류

Unity(유니티)_Could not resolve all files for configuration ':app:debugRuntimeClasspath'

오류 내용 :

Could not resolve all files for configuration ':app:debugRuntimeClasspath'

 

이러한 문제는 
"settingsTemplate"파일 안의 순서를 

 

수정 전 : 
allprojects {
    repositories {
        google()
        mavenCentral()
        maven {
            url "https://jitpack.io"
        }
        maven {
            url 'https://maven.google.com/'
        }
    }
}


수정 후: 


allprojects {
    repositories {
        google()
        maven {
            url "https://jitpack.io"
        }
        maven {
            url 'https://maven.google.com/'
        }
        mavenCentral()
    }
}

이런 식으로 "mavenCentral()"를 뒤로 미루면 된다.

 

 

Unity(유니티)_Could not resolve all files for configuration ':app:debugRuntimeClasspath'