Android Studio无法为参数找到方法runProguard()?


67
/Library/Java/JavaVirtualMachines/jdk1.7.0_60.jdk/Contents/Home/bin/java "- com.intellij.rt.execution.application.AppMain org.gradle.launcher.GradleMain --build-file /Users/Tom/Documents/Git_open_sources/android-material-drawer-template/app/build.gradle

FAILURE: Build failed with an exception.

* Where:
Build file '/Users/Tom/Documents/Git_open_sources/android-material-drawer-template/app/build.gradle' line: 16

* What went wrong:
A problem occurred evaluating project ':app'.
> Could not find method runProguard() for arguments [false] on BuildType_Decorated{name=release, debuggable=false, testCoverageEnabled=false, jniDebuggable=false, pseudoLocalesEnabled=false, renderscriptDebuggable=false, renderscriptOptimLevel=3, applicationIdSuffix=null, versionNameSuffix=null, minifyEnabled=false, zipAlignEnabled=true, signingConfig=null, embedMicroApp=true, mBuildConfigFields={}, mResValues={}, mProguardFiles=[], mConsumerProguardFiles=[], mManifestPlaceholders={}}.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 6.741 secs

Process finished with exit code 1

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.0"

defaultConfig {
    applicationId "com.poliveira.apps.materialtests"
    minSdkVersion 11
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        runProguard false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:21.0.0'
//noinspection GradleDependency
compile "com.android.support:appcompat-v7:21.0.0"
compile 'com.android.support:recyclerview-v7:21.0.0'
}    

这是什么版本的Android Studio和什么版本的Android Gradle插件?
斯科特·巴塔


Android Studio版本是1.0 rc
Tom_Love_Jerry 2014年

甚至对我来说也是同样的问题。与AS 1.0 RC相同。我导入了我在AS 0.8中开发的项目...
Naresh 2014年

Answers:


180

将android studio更新为1.0 RC 3之后,我遇到了同样的问题。我无法将项目导入到新版本。我必须创建一个新项目,然后手动将文件从上一个项目添加到新项目中。

之后,我发现gradle构建文件发生了变化。

这是更改:

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

代替“ runProguard false”,使用“ minifyEnabled false”


为我工作(更新为1.0“ final”之后)。也应该更新:Gradle 2.2(或更高版本)“ SDK-Tools”支持存储库,支持库Play Services等,等等
ieselisra 2014年

好答案!谢谢!也为我工作
乔纳森·佩里


11

为我工作(更新为1.0“最终版本”后):

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

也应该更新:Gradle 2.2(或更高版本),“ SDK工具”,支持存储库,支持库,播放服务等,


9

而不是在gradle文件中使用runProguard,请尝试使用minifyEnabled。这应该可以解决问题。runProguard已弃用,很快将停止工作。

注意-要使用minifyEnabled,应将gradle更新到2.2或更高版本。



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.