반응형
SMALL
[Android] More than one file was found with OS independent path 'META-INF/ASL2.0'
-에러 해결 방법
More than one file was found with OS independent path 'META-INF/ASL2.0'
OS 독립적 경로 'META-INF /ASL2.0'에서 하나 이상의 파일이 발견되었습니다.
라는 에러입니다.
project > app > build.gradle 에 아래의 옵션을 추가해주세요.
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
}
반응형
LIST
'Leave a note > ANDROID' 카테고리의 다른 글
[Android] 단축키 정리 -펌 (0) | 2018.10.04 |
---|---|
[ANDROID] WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. 에러 해결 방법 (0) | 2018.10.02 |
[ANDROID] unknown element meta-data found , 에러해결방법 (0) | 2018.08.23 |
[ Android ] 커스텀 팝업 다이얼로그 (3) | 2018.08.08 |
[ 안드로이드 ] 안드로이드 Webview _ FileChooser (0) | 2017.10.26 |