반응형
Notice
Recent Posts
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 |
Tags
- hung-up
- OZViewer
- Galaxy Watch
- socket.io
- socket-server
- Dva
- TIZEN
- socket-client
- NoSuchMethodError
- JNI
- mqtt
- git
- Java8
- google-login
- 오즈뷰어
- Flavors
- 워치
- ActivityResult-API
- AWS
- git-push
- Android
- ozd
- Firebase
- gradle
- mosquitto
- Kotlin
- firebase-storage
- firebase-database
- BottomSheetDialog
- cloud-firestore
Archives
- Today
- Total
Hyeyeon blog
[Android] Failed resolution of: Lorg/apache/http/params/BasicHttpParams 해결 본문
개발/Android
[Android] Failed resolution of: Lorg/apache/http/params/BasicHttpParams 해결
Hyeyeon.P 2021. 3. 15. 18:17반응형
targetSdkVersion을 26에서 29로 변경하니 아래와같은 오류가 발생했다.
java.lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/params/BasicHttpParams;
AndroidManifest.xml의 application에 아래와 같이 추가하면 해결된다.
<application>
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
</application>
728x90
'개발 > Android' 카테고리의 다른 글
[Android] 갤러리 사진을 Firebase-Storage에 업로드하기 (0) | 2021.05.07 |
---|---|
[Android] 파일 다운로드 시, progressBar percent가 마이너스로 나오는 경우 (0) | 2021.03.18 |
[Android] No matching client for package name '..' 해결 (0) | 2021.02.08 |
[Android] JNI에서 사용되는 문법 정리 (0) | 2021.02.01 |
[Android] JNI를 이용해 안드로이드에서 c파일 사용하기 (0) | 2021.02.01 |
Comments