請幫我一把。當曾經我試圖建立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
請幫我一把。提前致謝。
您是否嘗試清潔和重建項目? – SripadRaj
完成但問題仍然存在。 –