当前位置:  开发笔记 > 编程语言 > 正文

Google的新地方资料库(实施'com.google.android.libraries.places:1.0.0')无法解析

如何解决《Google的新地方资料库(实施'com.google.android.libraries.places:1.0.0')无法解析》经验,为你挑选了1个好方法。

我正在尝试迁移到新的Places SDK客户端,但我告知要在文档中安装的依赖项给我一个"无法解决"错误.我确保删除旧的SDK和places-compat库,然后清理和重建.

这是我的依赖列表:

dependencies {
       implementation 'com.android.support:support-v4:28.0.0'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.2'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
        implementation fileTree(include: ['*.jar'], dir: 'libs')
        implementation 'com.android.support:appcompat-v7:28.0.0'
        implementation 'com.android.support:support-v13:28.0.0'
        implementation 'com.android.support:cardview-v7:28.0.0'
        implementation 'com.android.support:customtabs:28.0.0'
        implementation 'com.android.support:design:28.0.0'
        implementation 'com.android.support:support-media-compat:28.0.0'
        implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        implementation 'com.android.support:recyclerview-v7:28.0.0'
        implementation 'com.android.support:multidex:1.0.3'
        implementation 'android.arch.paging:runtime:1.0.1'
        implementation 'com.google.code.gson:gson:2.8.5'
        implementation 'org.jetbrains:annotations:16.0.2'
        implementation 'com.google.android.gms:play-services-auth:16.0.1'
        implementation 'com.google.android.gms:play-services-ads:17.0.0'
        implementation 'com.google.android.libraries.places:1.0.0'
        implementation 'com.facebook.android:facebook-android-sdk:4.38.1'
        implementation 'com.google.firebase:firebase-core:16.0.4'
        implementation 'com.firebaseui:firebase-ui-auth:4.2.0'
        implementation 'com.google.firebase:firebase-firestore:18.0.0'
        implementation 'com.firebaseui:firebase-ui-firestore:4.1.0'
        implementation 'com.google.firebase:firebase-auth:16.1.0'
        implementation 'com.google.firebase:firebase-ads:17.0.0'
        implementation 'com.google.firebase:firebase-messaging:17.3.4'
        implementation('com.crashlytics.sdk.android:crashlytics:2.9.6@aar') {
            transitive = true
        }
    }

apply plugin: 'com.google.gms.google-services'

这是我的项目级gradle文件:

buildscript {

    repositories {
        google()
        jcenter()
        mavenCentral()
        maven{
            url 'https://maven.fabric.io/public'
        }
        maven{
            url "https://maven.google.com"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0'
        classpath'com.google.gms:google-services:4.2.0'
        classpath 'io.fabric.tools:gradle:1.26.1'


    }
}

allprojects {
    repositories {
        google()
        jcenter()
        maven {
            url 'https://maven.google.com/'
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Martin Zeitl.. 17

依赖无效; 应该是:

dependencies {
    implementation "com.google.android.libraries.places:places:1.1.0"
}

请参阅迁移指南.



1> Martin Zeitl..:

依赖无效; 应该是:

dependencies {
    implementation "com.google.android.libraries.places:places:1.1.0"
}

请参阅迁移指南.


你没有错误地复制它.Google的页面错误:https://developers.google.com/places/android-sdk/start.**迁移指南**是正确的.
推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有