未解决的Android依赖关系

时间:2018-10-17 14:36:53

标签: android

请在此代码行上保持同步错误。

实现'com.android.support:support.media.compat:28.0.0'

不知道这是什么意思,我已经尝试过多次更改库,但是没有运气

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
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'
implementation 'com.google.firebase:firebase-core:16.0.0:15.0.0'

}

感谢您的帮助!

2 个答案:

答案 0 :(得分:0)

尝试一下 docs

compile group: 'com.android.support', name: 'support-media-compat', version: '28.0.0-alpha1'

答案 1 :(得分:0)

我认为这是最新版本的Android Studio 3.2中的一个错误,当我们通过firebase工具将其添加时,它会添加firebase的bug依赖性。

在将Firebase添加到项目中时遇到了同一问题,但是手动添加以下代码行可以帮助我解决问题。

implementation 'com.google.firebase:firebase-core:16.0.4'

您可以在official firebase documentation

中检出依赖性

并且媒体兼容库也应该像这样this

implementation 'com.android.support:support-media-compat:28.0.0'

希望有帮助!!