私は 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>
コーディングを始めたのは今週が初めてです。本当に馬鹿げた話だったらごめんなさい。私はこの分野に本当に不慣れで、他に質問できる場所が見つかりませんでした。ルールに違反していたらごめんなさい。
ベストアンサー1
アプリケーション マニフェスト ( AndroidManifest.xml
) を開き、Merged Manifest
編集ペインの下部にあるタブをクリックします。以下の画像を確認してください。
画像の右側の列にエラーが表示されています。エラーを解決してみてください。同じ問題を抱えている人の役に立つかもしれません。続きを読むここ。
また、エラーが見つかり、使用している外部ライブラリからそのエラーが発生した場合は、コンパイラに外部ライブラリの属性を無視させる必要があります。//マニフェストのアプリケーションタグにこの属性を追加します
tools:replace="android:allowBackup"
//Add this in the manifest tag at the top
xmlns:tools="http://schemas.android.com/tools"