任务 ';checkDebugManifest' 的配置出错

Getting an error with the configuration of task ';checkDebugManifest'

Spring Guide 的帮助下,我正在使用 Gradle 构建我的第一个 android 项目。当我 运行 gradle build 时,出现以下错误:

* 出了什么问题:
发现任务“:checkDebugManifest”的配置存在问题。
> 为 属性 'manifest' 指定的文件 'C:\Windows\System32\src\main\AndroidManifest.xml' 没有
 存在。

* 尝试:
运行 使用 --stacktrace 选项获取堆栈跟踪。 运行 使用 --info 或 --debug 选项以获得更多 l
输出。

构建失败

这是 AndroidManifest 文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hello"
android:versionCode="1"
android:versionName="1.0.0" >

<application android:label="@string/app_name" >
    <activity
        android:name=".HelloActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
 </application>

</manifest>

可能您正在 运行ning Gradle 来自 C:\Windows\System32 文件夹。我不确定您是否也将 build.gradle 放在那里。您需要考虑您的项目位于何处,运行 Gradle 那里为其提供适当的上下文。

我运行遇到了同样的问题。确保您的清单位于正确的目录中。我错误地把它放在 src 而不是 src/main。这解决了问题。