2016-03-14 23 views
1

我有一个错误与MobileFirst基金会7.1,当我想我的设备与指挥上运行我的应用程序:MFP科尔多瓦运行-p安卓错误gradle这个-p的Android

ERROR running one or more of the platforms: Error: C:\projects\profondeur\trunk\platforms\android\cordova\run.bat: Command failed with exit code 8 
You may not have the required environment or OS to run this project 
mobilefirst-cli verb cordova_run error stack: "Error: FAILURE: Build failed with an exception.\r\n\r\n* Where:\r\nBuild file 'C:\\projects\\profondeur\\trunk\\platforms\\android\\build.gradle' line: 3\r\n\r\n* What went wrong:\r\nA problem occurred evaluating root project 'android'.\r\n> Gradle version 2.2 is required. 
Current version is 1.12. If using the gradle wrapper, try editing the distributionUrl in C:\\projects\\profondeur\\trunk\\gradle\\wrapper\\gradle-wrapper.properties to gradle-2.2-all.zip\r\n\r\n* Try:\r\nRun with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.\r\n\r\nC:\\projects\\profondeur\\trunk\\platforms\\android\\cordova\\node_modules\\q\\q.js:126\r\n     throw e;\r\n       ^\r\nError code 1 for command: cmd with args: /s,/c,C:\\projects\\profondeur\\trunk\\platforms\\android\\gradlew,build,-b,C:\\projects\\profondeur\\trunk\\platforms\\android\\build.gradle,-Dorg.gradle.daemon=true,-x,lint,-x,lintVitalRelease,-x,compileLint,-x,copyReleaseLint,-x,copyDebugLint\n at ChildProcess.<anonymous> (C:\\Program Files\\IBM\\MobileFirst-CLI\\mobilefirst-cli\\node_modules\\cordovacmd\\lib\\cordova-cli.js:253:41)\n at ChildProcess.emit (events.js:117:20)\nat maybeClose (child_process.js:766:16)\n at Socket.<anonymous> (child_process.js:979:11)\n at Socket.emit (events.js:95:17)\n at Pipe.close (net.js:466:12)" 
mobilefirst-cli verb cordova_run error message: "FAILURE: Build failed with an exception.\r\n\r\n* Where:\r\nBuild file 'C:\\projects\\profondeur\\trunk\\platforms\\android\\build.gradle' line: 3\r\n\r\n* What went wrong:\r\nA problem occurred evaluating root project 'android'.\r\n> Gradle version 2.2 is required. Current version is 1.12. If using the gradle wrapper, try editing the distributionUrl in C:\\projects\\profondeur\\trunk\\gradle\\wrapper\\gradle-wrapper.properties to gradle-2.2-all.zip\r\n\r\n* Try:\r\nRun with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.\r\n\r\nC:\\projects\\profondeur\\trunk\\platforms\\android\\cordova\\node_modules\\q\\q.js:126\r\n     throw e;\r\n       ^\r\nError code 1 for command: cmd with args: /s,/c,C:\\projects\\profondeur\\trunk\\platforms\\android\\gradlew,build,-b,C:\\projects\\profondeur\\trunk\\platforms\\android\\build.gradle,-Dorg.gradle.daemon=true,-x,lint,-x,lintVitalRelease,-x,compileLint,-x,copyReleaseLint,-x,copyDebugLint" 
mobilefirst-cli verb cordova_run error code: 0 
Error: FAILURE: Build failed with an exception. 

* Where: 
Build file 'C:\projects\profondeur\trunk\platforms\android\build.gradle' line: 3 

* What went wrong: 
A problem occurred evaluating root project 'android'. 
> Gradle version 2.2 is required. Current version is 1.12. If using the gradle wrapper, try editing the distributionUrl in C:\projects\profondeur\trunk\gradle\wrapper\gradle-wrapper.properties to gradle-2.2-all.zip 

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

C:\projects\profondeur\trunk\platforms\android\cordova\node_modules\q\q.js:126 
        throw e; 
         ^
Error code 1 for command: cmd with args: /s,/c,C:\projects\profondeur\trunk\platforms\android\gradlew,build,-b,C:\projects\profondeur\trunk\platforms\android\build.gradle,-Dorg.gradle.daemon=true,-x,lint,-x,lintVitalRelease,-x,compileLint,-x,copyReleaseLint,-x,copyDebugLint 
mobilefirst-cli verb cli error, finish with mobilefirst cordova 

我不不明白Gradle有什么问题吗?

回答

0

在build.gradle文件中,确保您使用的是最新的gradle插件版本。目前1.5.0

buildscript { 
    dependencies { 
     classpath 'com.android.tools.build:gradle:1.5.0' 
    } 
} 

然后进入平台/安卓/ gradle产出/包装/ gradle-wrapper.properties并确保distributionUrl值使用最新的。

distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip 

另外我会建议添加这个环境变量,以便它将拉你想要的gradle包装分发url版本。科尔多瓦倾向于添加一个旧版本,除非你添加这个环境变量。

CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL = HTTP://services.gradle.org/distributions/gradle-2.8-all.zip

+0

所以我在build.gralde但不是在gradle-wrapper.properties好值,其中我有这个代码: 'distributionBase = GRADLE_USER_HOME distributionPath =包装纸/ dists中 zipStoreBase = GRADLE_USER_HOME zipStorePath =包装纸/ dists中 distributionUrl = HTTP \://services.gradle.org/distributions/gradle-1.12-all.zip ' 即使添加了这个环境变量:CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL = http://services.gradle.org/distributions/gradle-2.8-all.zip –

+0

手动更改'distributionUrl = http \://services.gradle.org/distributions/ gradle-1.12-all.zip“添加到gradle-wrapper.properties中的正确版本以达到正确的值。 此外,通过您的项目的父目录,并删除任何build.gradle&gradle文件夹(内置gradle包装文件)。有时这些会生成。 ex。 C:/ User/workspace/myproject /, gradle文件可能在用户目录或工作区目录中生成。你需要删除这些。 – ktop