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

来源:互联网 发布:电子取证软件 编辑:程序博客网 时间:2024/05/29 18:01
android studio导入项目出错:Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs

通常 出现上面的 错误 一般都是 在导入第三方 时 主项目中的 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    }

如果 查看 确实没有冲突的 jar 包 那么 查看 上面的 主工程 和 第三方 的工程 中的 targetSdkVersion 23 的版本好是否 一致 或者 将 主工程中的 版本降低 一些

然偶 clean 一下 看看 是否还会出现冲突的问题

0 0