无法使用Android Studio 1.2和Gradle 1.2.2加载类OutputFileTask

升级Android Studio 1.2后,尝试同步项目时出现以下错误

Error:Unable to load class
‘com.android.build.gradle.internal.tasks.OutputFileTask’. Possible
causes for this unexpected error include:

  • Gradle’s dependency
    cache may be corrupt (this sometimes occurs after a network connection
    timeout.) Re-download dependencies and sync
    project (requires network)
  • The state of a Gradle build
    process (daemon) may be corrupt. Stopping all Gradle daemons may solve
    this problem. Stop Gradle build processes
    (requires restart)

In the case of corrupt Gradle
processes,you can also try closing the IDE and then killing all Java
processes.

这是我的gradle文件

apply plugin: 'com.android.library'
apply plugin: 'maven'
apply plugin: 'maven-publish'

android {
    compileSdkVersion 21
    buildToolsversion "21.1.2"

    repositories {
        mavenCentral()
    }

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            consumerProguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
        }
    }

    lintOptions {
        abortOnError false
        checkReleaseBuilds false
    }

    packagingOptions {
        exclude 'meta-inf/services/javax.annotation.processing.Processor'
        exclude 'meta-inf/DEPENDENCIES.txt'
        exclude 'meta-inf/DEPENDENCIES'
        exclude 'meta-inf/LICENSE.txt'
        exclude 'meta-inf/LICENSE'
        exclude 'meta-inf/NOTICE.txt'
        exclude 'meta-inf/NOTICE'
        exclude 'meta-inf/LGPL2.1'
    }
}


dependencies {
    compile 'com.android.support:support-v4:22.1.0'
    compile 'com.android.support:appcompat-v7:22.1.0'
}

task sourceJar(type: Jar) {
    classifier "source"
}



publishing {
    publications {

        repositories.maven {
            url repo
            credentials {
                username user
                password passwd
            }
        }

        maven(MavenPublication) {
            artifacts {
                groupId 'com.android'
                artifactId 'artefact-1'
                version '1'
                artifact artifactPath
            }
        }
    }

}

}

我认为可能还有另一个gradle api更改导致旧的东西不再工作.

如何解决问题再次构建我的项目?

解决方法

你在使用dexguard吗?我遇到了旧dexguard版本的问题.自从我更新到6.1.19后就不再有问题了. (目前使用AS 1.2.1& Gradle 2.4& 1.2.3)

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...