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

笑着哭i 提交于 2019-11-30 02:57:52
Balki

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

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

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. :)

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
    }
}

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" />

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.

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