清单合并失败,Android Studio中出现多个错误

因此,我是Android和Java的初学者。我刚刚开始学习。今天我在尝试Intent时,发生了一个错误。


Error:Execution failed for task ':app:processDebugManifest'.

> Manifest merger failed with multiple errors, see logs

我在这里找到了一些解决方案,并尝试实现它们,但是没有用。


这是我的build.gradle:


apply plugin: 'com.android.application'


android {

compileSdkVersion 23

buildToolsVersion "23.0.0"


defaultConfig {

    applicationId "com.example.rohan.petadoptionthing"

    minSdkVersion 10

    targetSdkVersion 23

    versionCode 1

    versionName "1.0"

}

buildTypes {

    release {

        minifyEnabled false

        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

    }

}

}


dependencies {

compile fileTree(dir: 'libs', include: ['*.jar'])

compile 'com.android.support:appcompat-v7:23.0.0'

}

这是我的AndroidManifest:


<?xml version="1.0" encoding="utf-8"?>

package="com.example.rohan.petadoptionthing" >


<application


    android:allowBackup="true"

    android:icon="@mipmap/ic_launcher"

    android:label="@string/app_name"

    android:theme="@style/AppTheme" >

    <activity

        android:name=".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>


    <activity android:name=".Second"

        />


    <activity android:name=".third"/>

    <activity android:name=".MainActivity"/>



</application>

这是我编码的第一周,如果这真的很傻,我感到抱歉。我真的很陌生,没有找到其他要问的地方。对不起,如果我违反任何规定


九州编程
浏览 926回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP