Error: Program type already present: android.support.v4.app.BackStackRecord$Op
안드로이드/버그탈출 2019. 2. 14. 14:09728x90
Error: Program type already present: android.support.v4.app.BackStackRecord$Op
컴파일 하니까 에러가 발생하면서 컴파일이 안된다.
implementation fileTree(dir: 'libs', include: ['*.jar'])
하고 중복이 발생하는 부분이 있나 싶어서
dependencies {
//implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation files('libs/d2xx.jar')
}
//implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation files('libs/d2xx.jar')
}
로 하고 컴파일을 하니까 에러가 발생하지 않고 잘 된다.
728x90
'안드로이드 > 버그탈출' 카테고리의 다른 글
build\intermediates\instant_run_split_apk_resources\debug\instantRunSplitApkResourcesDebug\out\slice_2\resources_ap (2) | 2019.04.22 |
---|---|
android webview err_unknown_url_scheme (0) | 2019.04.15 |
파일 복호화 시 IllegalBlockSizeException 발생 (0) | 2019.02.11 |
Android Studio API 23 으로 낮춰서 gradle 설정시 에러 해결방안 (0) | 2018.09.30 |
소프트키보드 이벤트 감지 (1) | 2018.09.19 |