Android的工作室 - 摇篮清单合并失败 [英] Android Studio - Gradle Manifest Merging Failed

查看:505
本文介绍了Android的工作室 - 摇篮清单合并失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我建立使用动作条福尔摩斯在机器人工作室的演示应用程序,我面临的问题,在下面的链接中提到: - <一href="http://stackoverflow.com/questions/17945111/actionbar-sherlock-with-android-studio-0-2-2">$p$pvious问题

I am building a demo app using actionbar sherlock in android studio and i was facing problem , mentioned in following link :- Previous Problem

现在下面的答复贴在我做了一些变化,上面的链接之后,现在我面临这个

now after following the replies posted on above link i did some changes and now i am facing this

Gradle: Execution failed for task ':SherlockTest:processDebugManifest'.
> Manifest merging failed. See console for more info.

我的应用程序清单文件是: -

my application manifest file is :-

<?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>

和动作条福尔摩斯清单文件是: -

and actionbar sherlock manifest file is :-

<?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>

我不能够弄清楚什么是这里的问题,请大家帮忙

i am not able to figure out what is the problem here, please help

推荐答案

请确保您的所有build.gradle脚本的minSdkVersion和targetSdkVersion对应于你在你的清单:

Make sure that in all your build.gradle scripts the minSdkVersion and targetSdkVersion correspond to those you have in your manifests:

android {
    defaultConfig { 
       minSdkVersion 10
       targetSdkVersion 16
    }
}

这工作对我来说,我希望它的伎俩你,欢呼声。

This worked for me, I hope it does the trick for you, cheers.

这篇关于Android的工作室 - 摇篮清单合并失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆