当前位置: 首页 > 知识库问答 >
问题:

图书馆网站。谷歌。Androidgms:play services地下室是由各种其他图书馆在[[15.0.1,15.0.1]]请求提供的,但已解决为16.0.1

余弘毅
2023-03-14

同步项目时,会出现以下错误:

库com.google.android.gms: play-services-base正在被[[15.0.1,15.0.1]]的其他库请求,但解析为16.0.1。

禁用插件并使用检查您的依赖关系树。/gradlew: app:依赖关系

这是我的构建。gradle项目文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
    google()
    jcenter()
    maven {
        url 'https://maven.fabric.io/public'
    }
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.2.1'
    classpath 'com.google.gms:google-services:4.1.0'
    classpath 'io.fabric.tools:gradle:1.25.4'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

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

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

这是我的构建。gradle应用程序文件:

import com.google.gms.googleservices.GoogleServicesPlugin

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

android {
compileSdkVersion 27
defaultConfig {
    multiDexEnabled true
    applicationId "com.example.myexampleapp"
    minSdkVersion 19
    targetSdkVersion 27
    versionCode 13
    versionName "0.1.13"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    vectorDrawables.useSupportLibrary = true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
implementation 'com.google.firebase:firebase-core:16.0.4'
implementation fileTree(dir: 'libs', include: ['*.jar'])
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.constraint:constraint-layout:1.1.3'
implementation 'com.google.firebase:firebase-firestore:17.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.firebaseui:firebase-ui-auth:4.1.0'
implementation 'com.firebaseui:firebase-ui-firestore:4.1.0'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.5'
implementation 'com.google.android.gms:play-services-auth:16.0.1'
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'
}
apply plugin: 'com.google.gms.google-services'

我所尝试的:

  • 遵循以下说明:com.google.Androidgms:play services测量基地正被其他多家图书馆申请
  • 将各种库更新到最新版本

谢谢你的帮助!

更新:这是我当前的依赖项:

dependencies {
api "com.android.support:appcompat-v7:28.0.0"
api "com.android.support:customtabs:28.0.0"
api "com.android.support:support-v4:28.0.0"
api "com.android.support:cardview-v7:28.0.0"
api "com.android.support:design:28.0.0"
api "com.android.support.constraint:constraint-layout:1.1.3"

api "com.crashlytics.sdk.android:crashlytics:2.9.5"
api "com.google.android.gms:play-services-base:16.0.1"
api "com.google.android.gms:play-services-auth:16.0.1"

api "com.google.firebase:firebase-core:16.0.5"
api "com.google.firebase:firebase-auth:16.0.5"
api ("com.google.firebase:firebase-firestore:17.1.2") {
    exclude group: "com.squareup.okhttp", module: "okhttp"
}
api ("com.firebaseui:firebase-ui-firestore:4.1.0") {
    exclude group: "com.google.code.gson", module: "gson"
}
api ("com.firebaseui:firebase-ui-auth:4.1.0") {
    exclude group: "com.google.code.gson", module: "gson"
}
implementation fileTree(dir: 'libs', include: ['*.jar'])
}

这就是我得到的错误:

错误:找不到符号类

共有1个答案

苏德容
2023-03-14

这些依赖关系使其得以构建:

dependencies {
    implementation "com.android.support:appcompat-v7:28.0.0"
    implementation "com.android.support:customtabs:28.0.0"
    implementation "com.android.support:support-v4:28.0.0"
    implementation "com.android.support:cardview-v7:28.0.0"
    implementation "com.android.support:design:28.0.0"
    implementation "com.android.support.constraint:constraint-layout:1.1.3"

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

    implementation "com.crashlytics.sdk.android:crashlytics:2.9.5"

    implementation "com.google.firebase:firebase-core:16.0.4"
    implementation "com.google.firebase:firebase-auth:16.0.4"

    implementation ("com.google.firebase:firebase-firestore:18.0.0") {
        exclude group: "com.squareup.okhttp", module: "okhttp"
        exclude group: "com.google.code.gson", module: "gson"
        // exclude group: "com.google.guava", module: "guava"
    }

    implementation ("com.firebaseui:firebase-ui-firestore:4.1.0") {
        exclude group: "com.google.code.gson", module: "gson"
    }

    implementation ("com.firebaseui:firebase-ui-auth:4.1.0") {
        exclude group: "com.google.code.gson", module: "gson"
    }
}

我添加了customtabs:28.0.0以满足所需的版本和play services base:16.0.0(应作为传递依赖项获取)。还排除了重复的软件包,例如gson。已使用编译dkversiontargetSdkVersion28。

 类似资料:
  • 我今天开始得到这个错误,昨天一切正常,gradle或Firebase版本没有变化 图书馆网站。谷歌。firebase:firebase iid由其他各种库在[[17.0.0,17.0.0]]请求,但解析为16.2.0。禁用插件并使用检查依赖关系树/gradlew:app:dependencies。 我昨天看到谷歌服务插件更新了,可能是这导致了问题。 如何解决这个问题?

  • 我搜索了一个解决方案,并在stackoverflow上看到了这个错误的其他答案(像这个解决方案1)。 这是我的build.gradle 但每次我尝试编译我得到的错误: 图书馆网站。谷歌。Androidgms:play services measurement base是由各种其他库在[[15.0.4,15.0.4]、[16.0.2,16.0.2]]请求的,但解析为16.0.2。禁用插件并使用检查依

  • 库正由[15.0.0,15.0.0]、[16.0.0,16.0.0]]上的各种其他库请求,但解析为16.0.0。禁用插件并使用检查依赖关系树/gradlew:app:dependencies。

  • 通知依赖项解析侦听器失败。 图书馆网站。谷歌。Androidgms:play services地下室正被各种其他图书馆在[[11.0.2,11.0.2]、[15.0.1,15.0.1]]请求,但已解析为15.0.1。禁用插件并使用检查依赖关系树/gradlew:app:dependencies。 我有这个错误时建立的应用程序,这是我的gradle

  • 我正在使用Fresco库将图像和GIF加载到我的应用程序中。我遇到的最大的限制是壁画的布局宽度和高度必须设置。因此,我设置了简单的付款人视图,如下所示: 我的问题是,如果图像的高度大于宽度,那么在图像的右边有很多空白(见附件),但是高度是好的 然后它可能发生在高度,如果实际图像小于宽度(见附件),所以这里,因为固定的高度是250dp,有很多空白的图像下面。

  • 提供了大量的库例程。 有些内置在解释器, ex.exe, exw.exe or exu 。 其他的是用Euphoria编写的,你必须在euphoria\include目录中包含一个.e文件才能使用它们。 要指出可以传入和返回的对象类型,使用以下前缀 - S.No 前缀和描述 1 x 一般对象(原子或序列) 2 s 一个序列 3 a 一个原子 4 i 整数 5 fn 用作文件编号的整数 6 st 字