更新项目后Android源代码未运行。它给出了以下误差。
程序类型已存在:org.apache.http.auth.AuthSchemeProvider 消息{kind = ERROR,text =程序类型已存在:org.apache.http.auth.AuthSchemeProvider,sources = [未知源文件],工具名称= Optional.of(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')
}
答案 0 :(得分:0)
尝试添加此行
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')
答案 1 :(得分:0)
如果你已经更新了你的android工作室,我必须说,Android Studio的新版本存在一些严重问题,请尝试使用此工具
升级:
implementation 'com.google.android.gms:play-services-analytics:8.4.0'
implementation 'com.google.android.gms:play-services-location:8.4.0'
为:
implementation 'com.google.android.gms:play-services-analytics:12.0.1'
implementation 'com.google.android.gms:play-services-location:12.0.1'
然后检查您的项目级别Gradle并添加此行与完全相同的版本:
classpath 'com.google.gms:google-services:3.2.0'
希望它可以帮到你。