添加googlemaps时出错

时间:2018-05-14 22:18:08

标签: android google-maps

这是我的依赖项:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:design:26.1.0'

    implementation 'com.koushikdutta.ion:ion:2.2.1'
    implementation 'com.firebase:firebase-client-android:2.5.2'
    implementation 'com.google.firebase:firebase-core:11.6.2'
    implementation 'com.google.firebase:firebase-messaging:11.6.2'

    implementation 'com.google.android.gms:play-services-maps:15.0.1'
}
apply plugin: 'com.google.gms.google-services'

当我添加最后一个com.google.android.gms:play-services-maps:15.0.1的实现时,我收到了这个错误:

  

所有firebase库必须高于或低于14.0.0

问题是什么?

1 个答案:

答案 0 :(得分:0)

您有两种不同的Firebase。 首先,您使用旧版本的firebase:

implementation 'com.firebase:firebase-client-android:2.5.2'

第二次,您使用的是更新的Firebase版本:

implementation 'com.google.firebase:firebase-core:11.6.2'
implementation 'com.google.firebase:firebase-messaging:11.6.2'

因此,您需要迁移旧的Firebase。您可以通过以下方式更改旧的firebase依赖关系来实现:

implementation "com.google.firebase:firebase-database:15.0.0"

您必须看到从旧版Firebase迁移的完整步骤 Upgrade your Android app from Firebase.com

此外,您需要使用相同版本的Firebase和Google Play服务。最后,您的依赖关系将是这样的:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:design:26.1.0'

    implementation 'com.koushikdutta.ion:ion:2.2.1'
    implementation "com.google.firebase:firebase-database:15.0.0"
    implementation 'com.google.firebase:firebase-core:15.0.0'
    implementation 'com.google.firebase:firebase-messaging:15.0.0'

    implementation 'com.google.android.gms:play-services-maps:15.0.0'
}
apply plugin: 'com.google.gms.google-services'