exifinterface 27.1.0,animation-vector-drawable:27.1.1,所有com.android.support库必须使用完全相同的版本

时间:2018-09-02 09:08:11

标签: android gradle

为什么gradle总是说

  

“所有com.android.support库必须使用完全相同的版本   规范(混合版本可能导致运行时崩溃)。找到了   版本27.1.1、27.1.0。例子包括   com.android.support:animated-vector-drawable:27.1.1和   com.android.support:exifinterface:27.1.0

哪里是27.1.0?

build.gradle:

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'

implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'

implementation 'com.google.code.gson:gson:2.6.2'

implementation 'com.google.android.gms:play-services-maps:15.0.1'
implementation 'com.google.android.gms:play-services-location:15.0.1'
implementation 'com.squareup.picasso:picasso:2.71828'


implementation 'com.google.firebase:firebase-core:16.0.3'
implementation 'com.google.firebase:firebase-messaging:17.3.0'

implementation 'com.karumi:dexter:5.0.0'

}

2 个答案:

答案 0 :(得分:5)

我有同样的问题。这是因为我使用了一些库。我认为是picasso

所以现在您可以添加exifinterface库

implementation "com.android.support:exifinterface:27.1.1"

更新

如果您使用的是androidx,请使用此

implementation "androidx.exifinterface:exifinterface:1.0.0"

这对我有用

根据此link,用于图片的EXIF句柄信息

  

具有读取和写入图像文件中嵌入的Exif标签的能力:现在具有140个不同的属性(其中几乎100个是Android 7.1 /此支持库新增的属性),包括有关相机本身,相机设置,方向和GPS坐标。

一些EXIF信息如下图所示

EXIF

答案 1 :(得分:0)

尝试使用毕加索时遇到此错误,最终通过添加以下依赖项进行了修复:

implementation "com.android.support:exifinterface:28.0.0"

这用于处理图片的EXIF数据。大多数照片都将具有与其相关的EXIF数据,例如照片的拍摄地点,时间和日期等。