Gradle build-info.xml not found for module app in Android Studio

一曲冷凌霜 提交于 2019-11-29 00:33:53

问题


Gradle build-info.xml not found for module app. Please make sure that you are using gradle plugin gradle:2.0.0-alpha or greater

I'm using the gradle plug in gradle:2.0.0-beta2. I randomly get this warning and after this very often either the app is not updated or it crashes. It is enough to clean and rebuild to fix the issue.

Is there any better way to fix it?


回答1:


For me it happens on the Mac, but on Windows it works fine all the time. Ever since I updated Android Studio to version 2.0 beta, the issue was still present until official 2.0 Android Studio version.

What helped was disabling Instant Run in Android Studio -> Preferences (search for "instant run" or) -> "Build, Execution, Deployment" -> Instant Run -> Enable Instant Run -> turn off




回答2:


run->clean and re-run the app. done my job.




回答3:


Try removing other gradle versions from studio. Let's say you have gradle 2.10 running and also have 2.8 install, the gradle wrapper behaves unexpectedly in this case. Therefore we have to clean and rebuild every time.

This works in mine case; hope in yours' too. :)




回答4:


I modified the build.Gradle of project as:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.+'

        // using 2.+ will solve the problem
    }
}



回答5:


I experienced the same warning/error and learned that in my case it was caused by missing or incorrectly configured .idea files.

More specifically, make sure your "gradleHome" in .idea/gradle.xml is pointing at the right location:

.idea/gradle.xml

<option name="gradleHome" value="C:\Program Files\Android\Android Studio Canary\gradle\gradle-2.10" />

If the problem persists, ensure you app modules is correctly configured:

.idea/modules.xml

<module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" />



回答6:


I had the same problem. In my case, I had to do File -> Settings -> Build, Execution, Deployment -> Compiler and then check Use in-process build.



来源:https://stackoverflow.com/questions/35312867/gradle-build-info-xml-not-found-for-module-app-in-android-studio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!