Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 음량표준화
- Service관리
- java callstack
- Dagger2란
- HashMap vs ArrayMap
- RxJava Programming
- enum performance
- 네트워크 디버깅
- corePoolSize
- Service 팁
- callstack 출력
- ArrayMap
- MediaDataSource
- convert Intent to string
- so파일 동적로딩
- BlockingQueue Capacity
- print callstack
- APK 동적로딩
- convert string to intent
- gitignore작성법
- android enum
- Intent String 변환
- gitignore
- lufs
- APK로딩
- Replaygain
- 오픈소스라이선스
- RxJava 스터디
- mitmproxy
- android network
Archives
- Today
- Total
일상&개발 로그
Gradle 라이브러리 충돌 시 대처방법 본문
안드로이드 개발 하다보면 각종 라이브러리들을 사용해야 할 경우가 발생합니다.
그러다 보면 각 라이브러리 내부에서 사용하는 라이브러리들을 파악하지 못해 충돌하는 경우가 빈번한데요.
내 프로젝트의 라이브러리라면 정리하기 쉽겠지만, 라이브러리가 사용하는 라이브러리까지 관리하기는 힘듭니다.
그럴 때 아래와 같은 방법을 이용하시면 편리합니다.
1. 라이브러리에서 특정 라이브러리를 제외하고 빌드
compile ('com.jakewharton:butterknife:8.5.1'){ exclude group:'com.android.support', module: 'support-compat' }
어떤 라이브러리가 충돌난 라이브러리를 사용하고 있는지 알고 있을 때 사용하면 좋습니다만, 파악하기가 쉽지 않습니다.
2. 전체 프로젝트의 라이브러리 버전을 강제로 하나로 통일
configurations.all { resolutionStrategy.force 'com.android.support:support-annotations:23.4.0' resolutionStrategy.force 'com.android.support:appcompat-v7:23.4.0' resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.0' }
한 줄만 추가하면 어떤 라이브러리가 문제인지 몰라도 간단히 해결되기 때문에 이 방법을 많이 사용
'개발 > 안드로이드 개발' 카테고리의 다른 글
[PerformancePattern] ArrayMap vs HashMap (0) | 2017.05.22 |
---|---|
[PerformancePatterns] Service 올바르게 사용하기 (0) | 2017.05.18 |
Dynamic APK Loading Research (0) | 2017.05.10 |
AsyncTask 특징 (0) | 2017.04.24 |
Intent를 String으로 변환하기 (0) | 2017.04.19 |
Comments