如果我添加implementation 'com.google.android.gms:play-services-analytics:16.0.1'
到我的应用程序build.gradle我在该行和implementation 'com.android.support:appcompat-v7:27.1.1'
All com.android.support libraries must use the exact same version
specification (mixing versions can lead to runtime crashes). Found versions
27.1.1, 26.1.0. Examples include com.android.support:animated-vector-
drawable:27.1.1 and com.android.support:support-media-compat:26.1.0
All gms/firebase libraries must use the exact same version specification
(mixing versions can lead to runtime crashes). Found versions 16.0.1, 16.0.0,
15.0.1. Examples include com.google.android.gms:play-services-
analytics:16.0.1 and com.google.android.gms:play-services-measurement-
base:16.0.0
我该如何解决这个问题?我尝试手动编辑库的版本,但仍然遇到相同的问题。
这是我的Build.Gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.domain.app"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
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'
compile 'com.android.support:recyclerview-v7:27.1.1'
compile 'com.android.support:cardview-v7:27.1.1'
compile 'com.facebook.stetho:stetho:1.4.2'
implementation 'com.google.android.gms:play-services-analytics:16.0.1'
}
答案 0 :(得分:1)
在所有 Gradle 文件(包括导入的项目)中更改库的版本。之后,清理并重建项目。如果仍然收到错误,请忽略它,因为它不会影响您的应用。
答案 1 :(得分:1)
您需要将所有Gradle文件的版本更改为相同版本。这包括您所有的本地库以及导入的库。
答案 2 :(得分:1)
您必须在所有Gradle文件中更改该库的版本( com.android.support:design:27.1.1 现在是最新版本)( (包括导入的项目),然后您必须清理并重建项目。 然后将所有“编译”一词替换为“实现”,因为配置“编译”已过时,并且已被“实现”和“ api”替换。
答案 3 :(得分:1)
所有com.android.support库必须使用完全相同的版本 规范(混合版本可能导致运行时崩溃)。找到了 版本 27.1.1、26.1.0。示例包括com.android.support:animated-vector- drawable:27.1.1和com.android.support:support-media-compat:26.1.0
<test>
<Periods>
<StartDate>2018-06-20</StartDate>
<EndDate>2019-06-22</EndDate>
</Periods>
<Periods>
<StartDate>2018-06-22</StartDate>
<EndDate>2019-06-20</EndDate>
<Periods>
</test>
代替 implementation
。下载您的版本
compile
注意
如果遇到相同的问题,请将 implementation 'com.google.android.gms:play-services-analytics:12.0.1'
降级为 v7:27.1.1
。