当我尝试迁移到New Places SDK并添加如下所示的新场所依赖项时:
implementation 'com.google.android.libraries.places:places:1.0.0'
它给其他依赖项带来很多错误,如下所示。
无法解决':app @ debug / compileClasspath'的依赖关系:可以 无法解析com.github.bumptech.glide:glide:4.3.1。
无法解决':app @ debug / compileClasspath'的依赖关系:可以 无法解析com.google.code.gson:gson:2.8.5。
无法解决':app @ debug / compileClasspath'的依赖关系:可以 无法解析com.mcxiaoke.volley:library:1.0.19。
无法解决':app @ debug / compileClasspath'的依赖关系:可以 无法解析com.github.bumptech.glide:glide:4.3.1。
我遇到40个以上的错误。
当我删除places libs项目时工作正常。
我的应用程序级别Gradel文件依赖性如下:
dependencies {
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
compile 'com.android.support:multidex:1.0.1'
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile('com.crashlytics.sdk.android:crashlytics:2.6.1@aar') {
transitive = true;
}
implementation 'com.facebook.android:facebook-android-sdk:4.1.0'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:support-annotations:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.jakewharton:butterknife:7.0.1'
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.google.android.gms:play-services-maps:16.1.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.google.android.libraries.places:places:1.0.0'
implementation 'com.google.guava:guava-collections:r03'
implementation 'com.etsy.android.grid:library:1.0.5'
implementation 'com.wdullaer:materialdatetimepicker:2.5.0'
implementation 'com.google.firebase:firebase-messaging:17.4.0'
implementation 'com.google.firebase:firebase-core:16.0.8'
implementation 'com.daimajia.numberprogressbar:library:1.2@aar'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.mcxiaoke.volley:library:1.0.19'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.3.+'
implementation 'org.apache.httpcomponents:httpcore:4.4.5'
implementation 'org.apache.httpcomponents:httpclient:4.5'
compile project(':mediapicker')
//compile project(':linkedin-sdk')
compile project(':sinch-android-rtc-3.11.1')
}
我的项目级Greadle文件如下:
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
maven {
url 'https://maven.google.com/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
自2天以来,我就遇到此错误。
答案 0 :(得分:1)
如下更新您的项目级别依赖项:
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.google.gms:google-services:4.1.0'
并如下更新您的应用级别依赖项:
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
请不要忘记在应用级别gradle的末尾添加“ apply plugin:'com.google.gms.google-services”
如果仍然无法正常工作,则必须执行以下操作:
//exclude glide coming from place api
implementation ('com.google.android.libraries.places:places:1.0.0'){
exclude module: 'glide'
}