1. ホーム
  2. android

[解決済み】Android Studioでマニフェストのマージに失敗し、複数のエラーが発生した。

2022-02-08 09:52:44

質問

私はAndroidとJavaの初心者です。勉強を始めたばかりです。を実験していたところ インテント 今日、エラーが発生しました。

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>

これは私のコーディングの最初の週です、私はこれが本当に愚かなことである場合は申し訳ありません。私は本当に初めてで、他に質問する場所を見つけられませんでした。もし私がルールを破っていたらごめんなさい

どのように解決するのですか?

アプリケーションマニフェストを開く( AndroidManifest.xml をクリックします。 Merged Manifest タブをクリックします。 下の画像を確認してください。

画像から、以下のことがわかります。 エラー をクリックし、そのエラーを解決してください。同じ悩みを持つ人の助けになるかもしれません。もっと読む こちら .

また、一度エラーを発見し、使用している外部ライブラリからそのエラーが発生した場合、コンパイラに外部ライブラリの属性を無視させる必要があります。 //マニフェストのアプリケーションタグにこの属性を追加してください。

   tools:replace="android:allowBackup" 
                                                                                                                                          
   //Add this in the manifest tag at the top

   xmlns:tools="http://schemas.android.com/tools"