Some file crunching failed, see logs for details

后端 未结 12 2026
不思量自难忘°
不思量自难忘° 2020-12-03 05:23

Today I got update for android studio 2.0 in stable version.

I update it and it restarted.

Then when It opens my existing project, it ask me to update my gra

12条回答
  •  长情又很酷
    2020-12-03 05:57

    aaptOptions {
            cruncherEnabled = false
    }
    

    Add the above line to your application module build.gradle

    Clear the build cache Similar to the Android plugin's clean task that clears your project’s build/ directories, you can run the cleanBuildCache task to clear your project’s build cache. If a project specifies a non-default directory for its build cache, running the task from that project clears only that cache (and not the shared cache in the default location). To execute the task, select View > Tool Windows > Terminal from the menu bar and use one of the following commands:

    On Windows:

    gradlew cleanBuildCache
    

    On Mac or Linux:

    ./gradlew cleanBuildCache
    

提交回复
热议问题