当我使用Android Studio构建我的应用程序时,我遇到了这个错误。APK被编译,但当我试图在Android P模拟器上运行应用程序时,它会崩溃并抛出以下错误。详情请见附件:

java.lang.NoClassDefFoundError:failed resolution of :Lorg/apache/http/ProtocolVersion

这是我的身材。级文件。如果有人对问题有什么建议,我将不胜感激。多谢。

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'
        }

当前回答

在react本机,我有错误不显示地图和关闭应用程序,运行adb logcat和显示错误在控制台:

java.lang.NoClassDefFoundError:failed resolution of :Lorg/apache/http/ProtocolVersion

通过在androidManifest.xml中添加来修复它

<uses-library
  android:name="org.apache.http.legacy"
  android:required="false" />

其他回答

Android漏洞追踪器https://issuetracker.google.com/issues/79478779上也有报道

如果你正在使用com.google.android.gms:play-services-maps:16.0.0或以下,并且你的应用程序是API级别28 (Android 9.0)或以上,你必须在AndroidManifest.xml的元素中包含以下声明。

<uses-library
      android:name="org.apache.http.legacy"
      android:required="false" />

如果你使用com.google.android.gms:play-services-maps:16.1.0,这是为你处理的,如果你的应用程序的目标是较低的API级别,这是不必要的。

在react本机,我有错误不显示地图和关闭应用程序,运行adb logcat和显示错误在控制台:

java.lang.NoClassDefFoundError:failed resolution of :Lorg/apache/http/ProtocolVersion

通过在androidManifest.xml中添加来修复它

<uses-library
  android:name="org.apache.http.legacy"
  android:required="false" />

更新:这不再是一个错误或解决方案,如果你的应用程序目标API级别28 (Android 9.0)或以上,并使用谷歌地图SDK for Android 16.0.0或以下(或如果你的应用程序使用Apache HTTP Legacy库),这是必需的。它现在被包含在官方文档中。公开的问题已被关闭作为有意的行为。

这是谷歌播放服务端的一个错误,直到它被修复,你应该能够通过将此添加到<application>标签内的AndroidManifest.xml来解决:

<uses-library android:name="org.apache.http.legacy" android:required="false" />

如果你使用安卓9.0的遗留jar比你必须使用。 在你的mainfest文件里。

< uses-library android: name = " org.apache.http。遗产”android:要求= " false " / >