2017-07-03 10 views
1

私を助けてください。とき私はGradleのを構築したり、以下のようにエラーを取得してアプリケーションを実行しようとしようとしています今まで: -エラー: ':app:processDebugManifest'タスクの実行に失敗しました。

Error:Execution failed for task ':app:processDebugManifest'. 
> Manifest merger failed with multiple errors, see logs 

ここに私のbuild.gradle(アプリ)である: -

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 25 
    buildToolsVersion "26.0.0" 
    defaultConfig { 
     applicationId "ABC.DEF.GHI" 
     minSdkVersion 15 
     targetSdkVersion 25 
     versionCode 1 
     versionName "1.0" 
     multiDexEnabled true 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 

    packagingOptions { 
     exclude 'META-INF/DEPENDENCIES' 
     exclude 'META-INF/NOTICE' 
     exclude 'META-INF/LICENSE' 
     exclude 'META-INF/LICENSE.txt' 
     exclude 'META-INF/NOTICE.txt' 
    } 

} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    compile 'com.android.support:appcompat-v7:25.3.1' 
    compile 'com.android.support.constraint:constraint-layout:1.0.2' 
    testCompile 'junit:junit:4.12' 
    compile files('libs/adjust-android-4.11.0.jar') 
    compile files('libs/FlurryAnalytics-6.2.0.jar') 
    compile files('libs/google-play-services.jar') 
    compile files('libs/httpmime-4.2.4.jar') 
    compile files('libs/picasso-2.5.2.jar') 
    compile files('libs/YouTubeAndroidPlayerApi.jar') 
    compile 'com.android.support:multidex:1.0.1' 
    compile project(':lib_slidingpanel') 
    compile project(':lib_dotted_loading') 
    compile project(':lib_viewpagerindicator') 
    compile project(':lib_annotation_validator') 

} 

そして、ここは私ですmenifiest.xmlコード: - 私は

ABC.DEF.GHI

と私のパッケージ名を置き換え

私を助けてください。前もって感謝します。

+0

あなたのプロジェクトを掃除して再構築しましたか? – SripadRaj

+0

が完了しても問題は解決しません。 –

答えて

1

これはツアーの描画可能なイメージのために、それらをチェックし、クリーンthwプロジェクトよりも欲しいです。 希望すると助かります

0

アプリケーションマニフェストを開く(AndroidManifest.xml)。[Merged Manifest]をクリックします。

Check image

あなたは右columでエラーを表示することができ、同じ問題を持ついくつかのいずれかを助けるかもしれerror.Itを解決しよう。

関連する問題