作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在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 log output.BUILD FAILED
Here is the AndroidManifest file:
<?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>
最佳答案
可能您是从C:\Windows\System32
文件夹运行Gradle的。我不确定您是否也将build.gradle
放在这里。您需要考虑您的项目在哪里,然后在此处运行Gradle以提供适当的上下文。
关于java - 任务 ';checkDebugManifest'的配置出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28110165/
我正在构建我的应用程序,当构建时发生此错误 - FAILURE: Build failed with an exception. * What went wrong: A problem was fo
使用 this guide我想使用 Gradle 在 Eclipse 中构建一个现有项目。 build.grale 包含: buildscript { repositories { maven
我是一名优秀的程序员,十分优秀!