Android

[Android/Error] More than one file was found with OS independent path

Question영 2019. 12. 16. 14:02
반응형

안드로이드 자체 API 와 설정한 서드파티 라이브러리 API 가 충돌날때 생기는 에러라고 합니다.

에러 메세지가 다음과 같이 났다고 하면

More than one file was found with OS independent path 'META-INF/DEPENDENCIES'

다음과 같이 설정하면 해결 됩니다.

build.gradle(app)

android {
    defaultConfig {
        ...
    }
    packagingOptions {
    exclude 'META-INF/DEPENDENCIES'
    }
}

참고하세요.

반응형