Trying The Following Code To Run An Application But Am Getting The Following Error."Manifest Merger Failed With Multiple Errors, See Logs"
Trying the following code to run an application but am getting the following error.'Manifest merger failed with multiple errors, see logs'. I made some changes in the app gradle fi
Solution 1:
You are attempting to use multiple versions of the Android Support Library:
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:22.2.0'
compile 'com.android.support:recyclerview-v7:+'
Use the same version for all com.android.support
artifacts. And that version should not be +
. Given these three lines, I would go with 25.3.1
.
Post a Comment for "Trying The Following Code To Run An Application But Am Getting The Following Error."Manifest Merger Failed With Multiple Errors, See Logs""