我在Spring Guide的帮助下使用Gradle构建我的第一个android项目。当我运行gradle build
时,我收到以下错误:
* What went wrong: A problem was found with the configuration of task ':checkDebugManifest'. > File 'C:\Windows\System32\src\main\AndroidManifest.xml' specified for property 'manifest' does not exist. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more l og output. BUILD FAILED
这是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>
答案 0 :(得分:0)
您可能正在从C:\Windows\System32
文件夹运行Gradle。我不确定你是否也将build.gradle
放在那里。您需要考虑项目所在的位置,并在那里运行Gradle以提供适当的上下文。
答案 1 :(得分:0)
我遇到了同样的问题。确保您的清单位于正确的目录中。我错误地将它放在src而不是src / main中。这解决了这个问题。