使用任务继续使用Gradle构建的Android Studio

时间:2013-07-19 10:22:49

标签: android android-studio

我已经开始在Windows 7上使用Android Studio。创建了一个简单的应用程序并将其部署到我的手机(通过USB)和模拟器上多次没有任何问题。

突然之间,我无法再部署我的应用程序了。当我打开Android Studio时,底部的消息说:“使用任务进行Gradle构建:[clean,:ProjectName:assembleDebug]”这个过程一直在运行,以防止我在Android Studio中做任何事情。

此消息不会消失,我无法做任何事情。有谁之前经历过这个吗?对我来说似乎Eclipse可能是更好的选择...

1 个答案:

答案 0 :(得分:0)

真正的问题是以前版本的Android Studio错误配置了IDEA文件(例如MyProject.iml)。它添加了一个不应存在的额外<component name="FacetManager"> XML元素。

在上述情况中,解决方案是修改MyProject.iml并移除<component name="FacetManager">部分,如下所示:

<module external.system.id="GRADLE" type="JAVA_MODULE" version="4">
  <component name="FacetManager">
    ...remove this element and everything inside such as <facet> elements...
  </component>
  <component name="NewModuleRootManager" inherit-compiler-output="true">
    ...keep this part...
  </component>
</module>

另见Gradle: FAILURE: Could not determine which tasks to execute