Android的工作室找不到方法runProguard()的参数?

/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工作室后,同样的问题1.0 RC 3.我不能导入我的项目到新版本。 我不得不创build一个新的项目,并手动将文件添加到以前的项目中的新项目。

之后,我在Gradle构build文件中发现了一个变化。

这是变化:

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

而不是“runProguard false”使用“minifyEnabled false”

Android Studio有一个更新,您需要迁移您的Gradleconfiguration: http : //tools.android.com/tech-docs/new-build-system/migrating-to-1-0-0

  • 用minifyEnabledreplacerunProguard
  • 用zipAlignEnabledreplacezipAlign
  • 等等…

不要在gradle文件中使用runProguard,请尝试使用minifyEnabled。 这应该解决这个问题。 runProguard已经被弃用,很快就会停止工作。

注 – 要使用minifyEnabled,gradle应该更新到2.2或更高版本。

适用于我(更新至1.0“final”后):

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

还应该更新:Gradle 2.2(或更高版本),“SDK-Tools”,Support Repository,Support Library,Play Services等等,

不要忘记把所有的renderscriptSupportMode改成renderscriptSupportModeEnabled!

还有谁是你的所有库中的项目

你需要做几件事从0.9迁移到1.0请参阅http://tools.android.com/tech-docs/new-build-system/migrating-to-1-0-0