如何解决谷歌播放服务错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何解决谷歌播放服务错误相关的知识,希望对你有一定的参考价值。

今天更新根文件夹中的播放服务后,我面临以下问题。我很困惑如何解决这个问题。

有人可以帮我解决这个问题吗?

这个错误很刺激。我不知道冲突在哪里。顺便说一下,为什么它显示冲突而没有版本相互关联。

错误:

图书馆com.google.android.gms:play-services-measurement-base正在[[15.0.0,15.0.0],[15.0.2,15.0.2]]的其他各个图书馆请求,但已解决为15.0.2。禁用插件并使用./gradlew:app:dependencies检查依赖关系树。

build.gradle脚本:

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



android {
configurations.all {
    resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
}
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
    applicationId "community.infinity"
    minSdkVersion 16
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
aaptOptions {
    cruncherEnabled = false
}
dexOptions {
    preDexLibraries false
    javaMaxHeapSize "4g"
}
buildTypes {
    release {
        minifyEnabled true
        shrinkResources true
        proguardFiles getDefaultProguardFile('proguard- android.txt'), 'proguard-rules.pro'
    }
    debug {
        ext.enableCrashlytics = false
    }
}

compileOptions {
    targetCompatibility 1.8
    sourceCompatibility 1.8
}

}

 dependencies {

implementation 'com.google.firebase:firebase-core:15.0.0'
implementation 'com.google.firebase:firebase-messaging:15.0.0'
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support'
    exclude module: 'support-annotations'
    exclude module: 'support-v4'
    exclude module: 'support-v13'
    exclude module: 'recyclerview-v7'
    exclude group: 'com.android.support', module: 'appcompat-v7'
})
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'de.hdodenhof:circleimageview:2.1.0'
implementation 'com.adamstyrc.cookiecutter:cookie-cutter:1.0.2'
implementation 'com.allattentionhere:fabulousfilter:0.0.5'
implementation 'com.github.florent37:diagonallayout:1.0.6'
implementation 'com.flaviofaria:kenburnsview:1.0.7'
implementation 'com.vstechlab.easyfonts:easyfonts:1.0.0'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'com.github.pwittchen:swipe:0.1.0'
implementation 'com.thesurix.gesturerecycler:gesture-recycler:1.4.0'
implementation 'com.github.iammert:MaterialIntroView:1.6.0'
implementation 'com.github.oxoooo:touch-image-view:1.0.1'
implementation 'com.github.deano2390:MaterialShowcaseView:1.2.0'
implementation 'com.squareup.okhttp:okhttp-urlconnection:1.6.0'
implementation('io.socket:socket.io-client:0.8.3') {
    // excluding org.json which is provided by Android
    exclude group: 'org.json', module: 'json'
}
implementation 'com.google.gms:google-services:3.3.0'
implementation 'com.iceteck.silicompressorr:silicompressor:2.1'
implementation 'com.fenchtose.nocropper:nocropper:0.2.0'
implementation 'me.relex:circleindicator:1.2.2@aar'
implementation('com.google.guava:guava:23.4-android') {
    exclude group: 'com.android.support'
    exclude module: 'support-annotations'
    exclude module: 'support-v4'
    exclude module: 'support-v13'
    exclude module: 'recyclerview-v7'
    exclude group: 'com.android.support', module: 'appcompat-v7'
}
implementation 'com.github.amlcurran.showcaseview:library:5.4.3'
implementation 'com.orhanobut:hawk:2.0.1'
implementation 'com.zsoltsafrany:needle:1.0.0'
implementation 'com.github.madrapps:pikolo:1.1.6'
implementation 'jp.wasabeef:richeditor-android:1.2.2'
implementation 'com.android.support:palette-v7:27.1.1'
testImplementation 'junit:junit:4.12'
implementation('com.github.bumptech.glide:glide:4.4.0') {
    transitive = true
}
implementation ("com.github.bumptech.glide:recyclerview-integration:4.4.0")   {
    // Excludes the support library because it's already included by Glide.
    transitive = false
}
annotationProcessor 'com.github.bumptech.glide:compiler:4.4.0'
implementation 'com.android.support:multidex:1.0.3'
implementation "me.leolin:ShortcutBadger:1.1.21@aar"
implementation 'com.hbb20:ccp:2.1.2'

}
答案

你的一个依赖是拥有不同版本的com.google.android.gms

Update

与过去不同,Firebase依赖项具有独立版本。如果您有版本冲突,那么您可以更新您的com.google.gms:google-services。并开始定义独立版本。

Update com.google.gms:google-services

转到顶部(项目)级别build.gradle并将com.google.gms:google-services更新为版本4.1.0 or newer if available

buildscript {
    ...
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'
        classpath 'com.google.gms:google-services:4.1.0' //< update this 
    }
}

Update Firebase dependencies to Latest Versions

Firebase依赖版本可以是单独的。所以检查Latest Versions

com.google.firebase:firebase-core:16.0.3    //Analytics
com.google.firebase:firebase-database:16.0.2    //Realtime Database

Orignal Solution (Useful)

解决方法:

  1. Exclude com.google.android.gms来自冲突的依赖。
  2. 更新该依赖关系if available
  3. 将您的com.google.android.gms版本更改为冲突版本。

Problem

如何查看使用com.google.android.gms的依赖项?

1. Solution by command

对于Android,请使用此行

 gradle app:dependencies

或者如果你有一个gradle包装器:

./gradlew app:dependencies

其中app是您的项目模块。

另外,如果你想检查是否有什么是compiletestCompile vs androidTestCompile依赖关系,以及是什么吸引它:

./gradlew :app:dependencyInsight --configuration compile --dependency <name>
./gradlew :app:dependencyInsight --configuration testCompile --dependency <name>
./gradlew :app:dependencyInsight --configuration androidTestCompile --dependency <name>

2 Use these plugins

Gradle View是一个Android Studio插件,您可以安装并显示依赖关系层次结构。 Methods Count是另一个插件,它还显示了依赖树。

另一答案

试试这对我有用。

在build.gradle文件末尾添加它

com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true
另一答案

Firebase Android SDK now have independent version numbers,允许更频繁,灵活的更新。

将google play gradle插件版本更新为最新版本,目前为3.3.0。

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

并将库更新到latest version

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
Cloud Storage   com.google.firebase:firebase-storage:15.0.2
Crash Reporting com.google.firebase:firebase-crash:15.0.2
Crashlytics     com.crashlytics.sdk.android:crashlytics:2.9.1
Invites         com.google.firebase:firebase-invites:15.0.2
Performance Monitoring  com.google.firebase:firebase-perf:15.1.0
Realtime Database   com.google.firebase:firebase-database:15.0.0
Remote Config   com.google.firebase:firebase-config:15.0.2

另外,因为reported至少使用版本15.0.2:

您需要将后一个依赖项的版本更新为15.0.2。这解决了Google Services Gradle插件版本3.3.0报告的问题:com.google.android.gms库:play-services-measurement-base正在[[15.0.0,15.0。 0],[15.0.2,15.0.2]],但解析为15.0.2 ......

另一答案

Firebase组件现在可以拥有独立版本(请参阅最新发行说明:https://firebase.google.com/support/release-notes/android

可能发生的事情是您的其他依赖项之一是将com.google.firebase的多个版本:*依赖项置于显式依赖项之外

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

您可以通过将firebase-messaging的依赖关系移动到15.0.2来解决此特定问题。

另一答案

对我来说,我需要将com.google.android.gms:play-services-base更新为版本15.0.1而不是15.0.0

implementation "com.google.android.gms:play-services-base:15.0.1"

另一答案

需要将核心库组件与其他firebase组件一起使用:

implementation 'com.google.firebase:firebase-core:16.0.0'
另一答案

我遇到了这个问题,并在本节https://firebase.google.com/support/release-notes/android#20180508找到了我的解决方案

这表明并非所有firebase依赖项都具有相同的当前版本的版本号。所以你需要独立更新每一个。我的最终配置看起来像这样:

implementation "com.google.firebase:firebase-core:15.0.2" implementation "com.google.firebase:firebase-ml-vision:15.0.0" implementation "com.google.firebase:firebase-appindexing:15.0.0" implementation "com.google.android.gms:play-services-ads:15.0.0" implementation "com.google.android.gms:play-services-maps:15.0.0" implementation "com.google.android.gms:play-services-places:15.0.0" implementation "com.google.android.gms:play-services-location:15.0.0" implementation "com.google.firebase:firebase-auth:15.0.0" implementation "com.google.firebase:firebase-database:15.0.0" implementation "com.firebaseui:firebase-ui-database:1.0.1" implementation "com.google.firebase:firebase-storage:15.0.2" implementation "com.google.firebase:firebase-messaging:15.0.2"

希望您能看到谷歌服务插件3.3.0带来的差异和新的更新

以上是关于如何解决谷歌播放服务错误的主要内容,如果未能解决你的问题,请参考以下文章

成功构建后由于谷歌播放服务导致离子抛出错误

二进制 XML 文件第 13 行:膨胀类片段时出错

谷歌播放服务版本错误

位置错误“谷歌播放服务不可用”,反应原生

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

谷歌浏览器 如何关掉网页自动播放视频