将com.google.android.gms的版本更新为15.0.2

时间:2018-05-03 09:39:55

标签: android firebase android-studio

我已更新Firebase SDK版本。但是将com.google.android.gms版本更新为15.0.2时出错。我试图制作相同版本的firebase和google服务,但它不会工作。

依赖

dependencies {
implementation 'com.google.firebase:firebase-messaging:15.0.2'
implementation 'com.android.support:design:26.1.0'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.google.firebase:firebase-ads:15.0.1'
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'org.parceler:parceler-api:1.1.9'
annotationProcessor 'org.parceler:parceler:1.1.9'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'io.reactivex:rxjava:1.2.3'
implementation 'io.reactivex:rxandroid:1.2.1'
implementation 'com.jakewharton.rxbinding:rxbinding:1.0.0'
implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
androidTestImplementation 'com.google.code.findbugs:jsr305:3.0.1'
implementation 'com.squareup.okhttp3:logging-interceptor:3.2.0'
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.4'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
implementation 'com.google.dagger:dagger-android:2.11'
implementation 'com.google.dagger:dagger-android-support:2.11'
// if you use the support libraries
annotationProcessor 'com.google.dagger:dagger-android-processor:2.11'
annotationProcessor 'com.google.dagger:dagger-compiler:2.13'
implementation 'com.google.auto.value:auto-value:1.5.2'
implementation 'com.jakewharton.timber:timber:4.1.2'
implementation 'org.greenrobot:eventbus:3.0.0'
testImplementation 'junit:junit:4.12'
implementation 'com.twitter.sdk.android:twitter:3.1.1'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.simplecityapps:recyclerview-fastscroll:1.0.16'
implementation 'com.google.android.gms:play-services-location:15.0.1'
implementation 'com.android.support:cardview-v7:26.1.0'
implementation project(':linkedin-sdk')
implementation 'com.azoft.carousellayoutmanager:carousel:1.2.1'
implementation 'com.android.support:multidex:1.0.2'
implementation 'gun0912.ted:tedpermission:2.1.0'
implementation project(':libphonenumber-5.9')
implementation 'com.facebook.android:facebook-login:4.30.0'
implementation 'com.anjlab.android.iab.v3:library:1.0.44'
implementation 'com.github.bumptech.glide:glide:3.8.0'
implementation 'com.android.support:exifinterface:26.1.0'
}

4 个答案:

答案 0 :(得分:26)

尝试以下代码:

<强> 1.build.gradle(gradle这个)

改变:

classpath 'com.google.gms:google-services:3.2.0'

致:

  classpath 'com.google.gms:google-services:3.2.1'

请点击以下链接:

https://stackoverflow.com/a/50152496/6920195

答案 1 :(得分:4)

对于检查此问题的任何人,您遇到此冲突问题的主要原因是您使用的是旧版Android Studio。

您需要执行以下操作:

将Android Studio升级到3.1版

添加:

classpath 'com.google.gms:google-services:3.3.0'

到(顶级)build.gradle文件,然后您就可以使用最新版本了。

请查看以下内容以获取更多信息:

Announcing the new SDK Versioning

Compilation failed to complete:Program type already present: com.google.android.gms.internal.measurement.zzabn

答案 2 :(得分:3)

  

运行Android 4.0(Ice Cream Sandwich)或更新版本的设备,以及Google   播放服务15.0.0或更高

如果您想使用 15.0.2 ,那么

  • 使用最新的 gms 版本。
  • 升级Android Studio版本。

<强>样本

 dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
        classpath 'com.google.gms:google-services:3.3.0' 
    }

阅读Firebase Android Release Notes

<强> FYI

最新的SDK版本

Firebase Core     com.google.firebase:firebase-core:15.0.2
Ads               com.google.firebase:firebase-ads:15.0.0
Analytics         com.google.firebase:firebase-analytics:15.0.2
App Indexing      com.google.firebase:firebase-appindexing:15.0.0
Authentication    com.google.firebase:firebase-auth:15.1.0
Cloud Firestore   com.google.firebase:firebase-firestore:16.0.0
Cloud Functions   com.google.firebase:firebase-functions:15.0.0
Cloud Messaging   com.google.firebase:firebase-messaging:15.0.2

更改后 Clean-Rebuild-Run

注意

如果出现同样的问题 DOWNGRADLE 您的版本。 使用 12.0.1

答案 3 :(得分:0)

确认您的版本符合版本here