안드로이드 스튜디오 3.1을 사용하여 안드로이드 P의 앱을 빌드 할 때 이러한 오류가 발생했습니다. .
java.lang.NoClassDefFoundError : : Lorg / apache / http / ProtocolVersion의 해결에 실패했습니다
App 모듈 아래에있는 build.gradle의 일부가 아래에 있습니다. 많은 감사합니다.
android {
compileSdkVersion 'android-P'
buildToolsVersion '28-rc1'
useLibrary 'org.apache.http.legacy'
//for Lambda
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
defaultConfig {
applicationId "xxx.xxx.xxx"
minSdkVersion 17
targetSdkVersion 27
versionCode xxxx
versionName "Vx.x.x"
multiDexEnabled true
//other setting required
ndk {
abiFilters 'armeabi', 'armeabi-v7a', 'armeabi-v8a', 'x86', 'x86_64', 'mips', 'mips64'
}