首页 > 解决方案 > 在 android studio 中更新 android 项目后,我的 gradle 构建没有运行

问题描述

更新项目后 Android 源代码未运行。它给出了以下错误。

程序类型已经存在:org.apache.http.auth.AuthSchemeProvider Message{kind=ERROR, text=程序类型已经存在:org.apache.http.auth.AuthSchemeProvider, sources=[Unknown source file], tool name=Optional。 (D8)}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation('com.github.danysantiago:sendgrid-android:1', {
    exclude group: 'org.apache.httpcomponents.httpclient-android'
    exclude group: 'org.apache.httpcomponents.httpclient'
})

implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.github.mancj:MaterialSearchBar:0.6'
// Glide image library
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.makeramen:roundedimageview:2.2.1'
implementation 'io.card:android-sdk:5.5.0'
implementation 'com.roughike:bottom-bar:2.1.1'
implementation 'com.kaopiz:kprogresshud:1.0.5'
implementation 'com.jude:swipebackhelper:3.1.2'
implementation 'com.google.android.gms:play-services-analytics:8.4.0'
implementation 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
implementation 'com.google.zxing:core:3.2.1'
implementation 'com.xwray:passwordview:1.0'
implementation 'com.github.javiersantos:AppUpdater:2.6.4'
/*implementation 'com.sun.mail:android-mail:1.5.5'
    implementation 'com.sun.mail:android-activation:1.5.5'*/
implementation 'com.google.android.gms:play-services-location:8.4.0'
implementation 'it.sephiroth.android.library.targettooltip:target-tooltip-library:1.3.15'
implementation 'com.stripe:stripe-android:6.0.0'
implementation 'org.altbeacon:android-beacon-library:2.12.4'
implementation files('libs/volley.jar')
implementation 'com.shawnlin:number-picker:2.4.6'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.6@aar') {
    transitive = true;
}
implementation project(':NPLibrary')

}

标签: androidandroid-gradle-pluginbuild.gradle

解决方案


尝试添加这一行

implementation('com.github.danysantiago:sendgrid-android:1', {
    exclude group: 'org.apache.httpcomponents.httpclient-android'
    exclude group: 'org.apache.httpcomponents.httpclient'
    //add this line
    exclude group: 'org.apache.http.auth'
})

更新 1

删除此行

implementation files('libs/volley.jar')

因为你已经指定了。

implementation fileTree(include: ['*.jar'], dir: 'libs')

推荐阅读