我正在尝试在我的android项目中包含“ play-service-auth:16.0.1”库,但不支持android SDK版本28。我收到以下错误消息:
所有com.android.support库必须使用完全相同的版本 规范(混合版本可能导致运行时崩溃)。找到了 版本28.0.0、26.1.0。例子包括 com.android.support:animated-vector-drawable:28.0.0和 com.android.support:support-media-compat:26.1.0以下...(Ctrl + F1) 检查信息:有一些库或工具的组合,并且 不兼容的库,或可能导致错误的库。一个这样的 不兼容版本与Android支持版本一起编译 不是最新版本(或特别是版本)的库 低于您的targetSdkVersion)。问题ID:GradleCompatible
以下是我的依赖项:
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0' // <- Error
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.android.gms:play-services-auth:16.0.1'
implementation 'com.google.http-client:google-http-client-gson:1.26.0'
implementation('com.google.api-client:google-api-client-android:1.26.0') {
exclude group: 'org.apache.httpcomponents'
}
implementation('com.google.apis:google-api-services-drive:v3-rev136-1.25.0') {
exclude group: 'org.apache.httpcomponents'
}
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'
}
我尝试寻找“ play-services-auth”的最新版本,但16.0.1似乎是最新版本。有谁知道如何解决此问题?