问题描述
我试图向我的应用程序添加依赖项,但我不小心修改了错误的 build.gradle 文件,现在我的应用程序无法正确构建.
I was trying to add a dependency to my application and I accidentally modified the wrong build.gradle file and now my application no longer builds correctly.
这是我的错误:
Error:FAILURE: Build failed with an exception.
* What went wrong:
Task 'generateDebugSources' not found in project ':app'.
* Try:
Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
我试图实现存在于这里的代码,但我最终失败了Android Studio 中的东西,因为我是 gradle 系统的新手.
I was trying to implement the code that exists here, but I ended up breaking things in Android Studio because I am new to the gradle system.
我编辑的文件是 .idea/gradle.xml 和 build.gradle,我包括在下面:
The files I edited were .idea/gradle.xml and build.gradle, which I am including below:
build.gradle:
build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
gradle.xml:
gradle.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
</project>
我试图尽可能接近默认文件,但最终使问题变得更糟,我无法再构建我的项目.
I was trying to get as close as the default files are, but ended up making the problem worse and I cannot build my project anymore.
另外,我使用的是 Android Studio 1.1.0,显示为最新更新.
Also, I am using Android Studio 1.1.0, which is shown to be the latest update.
提前致谢,如果我需要提供更多信息,请告诉我.
Thanks in advance, and if I need to provide more information, just let me know.
推荐答案
我解决了我的问题;我发现新项目没有 gradle 的问题,所以我创建了一个新项目并转移了我所有的 src 代码文件,它再次正常工作.
I fixed my issue; I discovered that new projects didn't have the issue with the gradle, so I made a new project and transferred all my src code files and it works fine again.
这篇关于如何解决“在项目中未找到的‘generateDebugSources’"问题?错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!