我正在android studio中使用actionbar sherlock构建一个演示应用程序,我遇到了问题,在以下链接中提到: - Previous Problem
现在按照上面链接上发布的回复后我做了一些更改,现在我正面对这个
Gradle: Execution failed for task ':SherlockTest:processDebugManifest'.
> Manifest merging failed. See console for more info.
我的应用程序清单文件是: -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sherlocktest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.sherlocktest.MainActivity"
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>
和actionbar sherlock清单文件是: -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="440"
android:versionName="4.4.0"
package="com.actionbarsherlock">
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="16"/>
<application/>
</manifest>
我无法弄清楚这里有什么问题,请帮忙
答案 0 :(得分:27)
确保在所有build.gradle脚本中,minSdkVersion和targetSdkVersion对应于清单中的那些:
android {
defaultConfig {
minSdkVersion 10
targetSdkVersion 16
}
}
这对我有用,我希望它可以帮助你,欢呼。
答案 1 :(得分:4)
我可以看到,如果你有一个带有Android Studio和gradle的多模块项目,IDE会尝试从每个模块合并清单文件到主清单。
如果您有模块A和模块B,并且在A清单中您从B模块声明了一些活动,gradle将在合并时遇到问题。
在清单文件中尝试删除跨模块引用。
答案 2 :(得分:3)
添加Google Play服务时,这对我有用
android {
compileSdkVersion 17
buildToolsVersion "17.0.0"
defaultConfig {
minSdkVersion 10
targetSdkVersion 16
}
}
答案 3 :(得分:2)
这对我有用。
我的库项目AndroidManifest.xml错过了一个应用程序元素
添加一个将修复它。
<application
android:allowBackup="true"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
我使用 gradle clean projectName - info 获取错误信息,并解决它。