일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- AWS
- ButterKnife
- Logcat
- 아마존웹서비스
- 커스텀뷰
- 안드로이드 스튜디오
- 이미지로딩 라이브러리
- OTTO
- 안드로이드 라이브러리
- 안드로이드
- Mac
- 라이브러리
- VMware
- Picasso
- Glide
- Today
- Total
박상권의 삽질블로그
[Android ERROR&SOLVE]org.apache.http does not exist 본문
안드로이드 개발자들이 모여있는 오픈채팅방에 참여해보세요 .
Q&A 및 팁을 공유하는 방입니다..
오픈채팅방 참여
블로그를 Medium으로 옮겨서 운영하고 있습니다.
앞으로 새로운 글은 모두 미디엄 블로그를 통해서 올릴 예정입니다.
미디엄에서 다양하고 유익한 포스팅을 살펴보세요
미디엄 블로그 보기
이번에 '클린 아키텍처'를 주제로 온라인 강의를 개설하게 되었습니다 🎉
평소 오픈채팅방이나 여러 커뮤니티에서 '클린 아키텍처'와 관련된 질문들이 많았는데요. 이를 해결해줄 수 있는 마땅한 강의가 없었던것 같습니다.
평소 '클린 아키텍처' 에 대한 궁금증이나 관심이 있으셨던 분들이 수강해보시면 도움이 될것 같아요
강의 살펴보기
이유
- 안드로이드 6.0 버전으로 오면서 Apache http를 지원하지 않음
Android 6.0 release removes support for the Apache HTTP client. If your app is using this client and targets Android 2.3 (API level 9) or higher, use the HttpURLConnection
class instead. This API is more efficient because it reduces network use through transparent compression and response caching, and minimizes power consumption. To continue using the Apache HTTP APIs, you must first declare the following compile-time dependency in your build.gradle
file:
android {
useLibrary 'org.apache.http.legacy'
}
해결방법
1. /build.gradle파일에 gradle버전 업데이트
buildscript {
...
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
2. /app/build.gradle 파일 수정
android {
compileSdkVersion 23
buildToolsVersion '23.0.1'
// 6.0으로 바뀌면서 apache 없어짐
useLibrary 'org.apache.http.legacy'
...
}
'IT > Android-ERROR&SOLVE' 카테고리의 다른 글
Event bus [Bus "default"] accessed from non-main thread Looper (1) | 2015.11.16 |
---|---|
[Android ERROR&SOLVE]GC overhead limit exceeded (0) | 2015.11.06 |
[Android ERROR&SOLVE]Default Activity Not Found (0) | 2015.10.22 |
[Android ERROR&SOLVE]threadid=1: thread exiting with uncaught exception (0) | 2015.07.24 |
[Android ERROR&SOLVE]AppCompat does not support the current theme features (0) | 2015.07.09 |