出口接口库是否没有v7.28:0:0?

时间:2019-02-08 15:23:20

标签: android-studio

我收到所有com.android.support库必须使用确切的版本规范的错误消息。

在这里我得到错误“实现'com.android.support:appcompat-v7:28.0.0'”

我有com.android.support:exifinterface-v7:27.0.0,但我不知道为什么它没有28版本。请帮助我T_T

dependencies {
 implementation fileTree(dir: 'libs', include: ['*.jar'])
 implementation 'com.android.support:appcompat-v7:28.0.0'
 implementation 'com.android.support:support-v4: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.7'
 implementation 'com.google.firebase:firebase-database:16.0.6'
 implementation 'info.hoang8f:fbutton:1.0.5'
 implementation 'com.rengwuxian.materialedittext:library:2.1.4'
 implementation 'com.android.support:recyclerview-v7:28.0.0'
 implementation 'com.android.support:cardview-v7:28.0.0'
 implementation 'com.squareup.picasso:picasso:2.71828'
 implementation 'com.firebaseui:firebase-ui-database:1.2.0'
 implementation 'com.android.support:support-annotations:28.0.0'
}

1 个答案:

答案 0 :(得分:1)

  

我有com.android.support:exifinterface-v7:27.0.0我不知道为什么   没有版本28。

这是因为exifinterface是belongs to com.android.support:exifinterface:28.0.0

所以,使用:

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