降级app compat版本后找不到资源

时间:2015-10-14 09:42:05

标签: android android-gradle

我已将appcompat库从版本v7:21更改为v7:19.1 我已经修复了所有相关问题,我将目标sdk从21降级到19并且每件事情都有效,但当我尝试构建设备时,我得到了 应用程序压缩版v7:21中找不到资源错误,该错误位于

app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.1/res/values-v21/values-v21.xml

我试图清理项目我的项目,并使用gradlew/clean但没有成功

我的问题如果我正在使用app compact v7:19为什么我在我的explosion-arr文件夹中找到app compact v7:21?

这是我的傻瓜

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion "19.1"
    defaultConfig {
        applicationId "appname"
        minSdkVersion 17
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"

        multiDexEnabled = true

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        preDexLibraries = false
    }
}
allprojects {
    repositories {
        mavenCentral()
        jcenter()
        maven { url 'https://github.com/leonardocardoso/mvn-repo/raw/master/maven-deploy' }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile project(':bounceScroller')
    compile project(':SwipeMenu')
    compile project(':indicator')
    compile project(':BetterSpinner')

    compile 'com.android.support:appcompat-v7:19.1.0'
    compile 'com.android.support:support-v4:19.1.0'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.easing:library:1.0.1@aar'
    compile 'com.daimajia.androidanimations:library:1.1.3@aar'
    compile 'com.edmodo:cropper:1.0.1'
    compile 'com.github.bumptech.glide:glide:3.6.1'
    compile 'com.leocardz:aelv:1.1@aar'
    compile 'com.google.android.gms:play-services:7.8.0'
    compile 'com.google.android.gms:play-services-ads:7.8.0'
    compile 'com.google.android.gms:play-services-identity:7.8.0'
    compile 'com.google.android.gms:play-services-gcm:7.8.0'

    compile 'com.android.support:multidex:1.0.0'
    compile 'com.creativeelites:androidexternalfilewriter:1.4'
    compile 'com.lifeofcoding:cacheutilslibrary:1.0.0@aar'
    compile 'com.google.code.gson:gson:2.2.2'
}

1 个答案:

答案 0 :(得分:0)

有时gradle不会按照您的意愿执行操作 - 例如删除未使用的缓存文件(如果它们未在项目中使用)。当然,这些可能会在以后有用,所以......

只需删除"中介"夹。它将在您的下一个版本中重新创建,并且您的构建将在第一次运行时花费更长时间,但问题应该消失。您基本上删除了缓存。

您可能还需要删除其他缓存文件,但这取决于您环境中的设置。

编辑:

您还可以尝试清除gradle缓存和中介文件夹。请参阅此参考资料,了解如何清除缓存。

How to clear gradle cache?