在ubuntu 16.04中将android-studio更新为3.4之后,我遇到了一些问题,
喜欢标记不匹配错误,尝试了某些解决方案后,它给出了错误
无法打开zip文件。 Gradle的依赖项缓存可能已损坏,然后再次尝试一些解决方案,我发现了问题
Android依赖项'com.android.support:interpolator:28.0.0'设置为compileOnly / provided,不支持
我找不到答案。
渐变文件:
android {
compileSdkVersion 28
defaultConfig {
applicationId "kha.unit.one"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
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'
}
我为之前的两个问题尝试过的解决方案是:
Tag mismatch error-Android studio
Error:Failed to open zip file. Gradle's dependency cache may be corrupt