15

我正在使用 android studio 中的 actionbar sherlock 构建一个演示应用程序,我遇到了问题,在以下链接中提到:- 上一个问题

现在按照上面链接上发布的回复后,我做了一些更改,现在我面临这个问题

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>

我无法弄清楚这里有什么问题,请帮忙

4

4 回答 4

27

确保在所有 build.gradle 脚本中,minSdkVersion 和 targetSdkVersion 对应于清单中的内容:

android {
    defaultConfig { 
       minSdkVersion 10
       targetSdkVersion 16
    }
}

这对我有用,我希望它对你有用,干杯。

于 2013-08-01T21:21:29.387 回答
4

就我所见,如果您有一个带有 Android Studio 和 gradle 的多模块项目,IDE 会尝试将每个模块的清单文件合并到一个主清单中。

如果您有一个模块 A 和一个模块 B,并且在 A 清单中声明了来自 B 模块的一些活动,则 gradle 将在合并时遇到问题。

尝试删除清单文件中的跨模块引用

于 2013-08-27T09:00:31.980 回答
3

添加 Google Play 服务时,这对我有用

android {
    compileSdkVersion 17
    buildToolsVersion "17.0.0"

    defaultConfig {
        minSdkVersion 10
        targetSdkVersion 16
    }
}
于 2013-08-23T22:28:06.857 回答
2

这对我行得通。
我的库项目 AndroidManifest.xml 缺少一个应用程序元素
,添加一个将修复它。

<application
    android:allowBackup="true"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
</application>

我使用gradle clean projectName --info获取错误信息,并解决。

于 2014-09-03T16:04:26.753 回答