您的位置:首页 > 移动开发

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple

2018-03-29 11:01 603 查看
android studio导入项目出错:Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs
1
通常 出现上面的 错误 一般都是 在导入第三方 时 主项目中的 jar包 和 第三方的 jar 包 有冲入 导致的 ,
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
// useLibrary 'org.apache.http.legacy'

defaultConfig {
applicationId "com.icongtai.zebra.sdk.demo"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"

// Enabling multidex support.
multiDexEnabled true
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
如果 查看 确实没有冲突的 jar 包 那么 查看 上面的 主工程 和 第三方 的工程 中的 targetSdkVersion 23 的版本好是否 一致 或者 将 主工程中的 版本降低 一些然偶 clean 一下 看看 是否还会出现冲突的问题
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐