2015. 7. 13. 02:08 IT/Android
1. http://hc.apache.org/downloads.cgi에서 HttpClient 다운
2. 압축 풀어서 httpclient-4.2.2.jar, httpcore-4.2.2.jar, httpmime-4.2.2.jar만 libs 폴더로 이동
3. 빌드
4. 하면 에러 발생(코드에 따라 다름)
※해결방법
build.gradle(module) 안에 android {
...
}
... 부분에
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/license.txt'
exclude 'META-INF/LGPL2.1'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/notice.txt'
}
추가 해야한다.
찾아보니 코드에 따라 추가해야 될게 다른거 같은데
원랜 DEPENDENCIES, NOTICE, LICENSE만 추가했다가 이것저것 추가하다보니 해결됨..
View의 Visibility 설정하기 (0) | 2015.08.04 |
---|---|
Activity를 Dialog 형태로 띄우기 (0) | 2015.07.23 |
Android Studio에서 lib 추가하기 (0) | 2015.07.13 |
Putty 설정 (0) | 2015.07.13 |
Permission 관련 (0) | 2015.06.28 |