好吧,我正在做项目,并且一切都很好,但是突然我遇到了这个错误,它来自无处在我的代码中不使用任何exitinterface库的地方。
gradle构建为
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "28.0.1"
defaultConfig {
applicationId "com.kpitb.manxoor.firebaseblog"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
{
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
// compile "com.android.support:exifinterface:27.1.1"
compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.+'
compile 'com.wang.avi:library:2.1.3'
compile 'id.zelory:compressor:2.1.0'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
和构建错误
Error:A problem occurred configuring project ':app'.
找不到exifinterface.jar(com.android.support:exifinterface:27.1.1)。 在以下位置搜索: https://jcenter.bintray.com/com/android/support/exifinterface/27.1.1/exifinterface-27.1.1.jar
答案 0 :(得分:1)
那很奇怪,我通过用maven交换jcenter()来实现这一点
之前
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven { // <-- Add this
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "http://dl.bintray.com/jlmd/maven"
}
}
错误消失了
repositories {
mavenLocal()
mavenCentral()
maven { // <-- Add this
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "http://dl.bintray.com/jlmd/maven"
}
jcenter()
}
答案 1 :(得分:0)
我解决了这个问题:
编译“ com.android.support:exifinterface:27.1.1”
只需更改supportLibVersion =“ 26.1.0”的exifinterface版本,如下所示:
编译'com.android.support:exifinterface:26.1.0'
和流浪汉shakalaka!
答案 2 :(得分:0)
这里有同样的问题。昨天一切都很好,今天是错误。
添加compile "com.android.support:exifinterface:27.1.1"
将得到Could not find exifinterface.jar
。
因此,以上任何一种解决方案都不适合我。
关于Alex,