Execution Failed For Task :appprocessdebugmanifest. Manifest Merging Failed. See Console For More Info
Solution 1:
In gradle build system minSdkVersion
and targetSdkVersion
defined in AndroidManifest.xml
file will be replaced by what you have mentioned in build.gradle file.
If you are using multiple modules or libraries in your project make sure all build.gradle files as well as AndroidManifest.xml files having same set of configuration for minSdkVersion
and targetSdkVersion
.
UPDATED
It might possible that any library like google_play_services or other is using different minsdkVersion
.
Check your Gradle Console
output and make the required changes in your AndroidManifest.xml
files as well as in build.gradle files. Also take care that all your build.gradle and AndroidManifest.xml files should have same minsdkVersion
. I tried with different values and finally found that most of the libraries uses minSdkVersion 8
.
Also for better practice you can remove min and target sdk from Manifest and have them in build.gradle file only for minimal confusion.
Post a Comment for "Execution Failed For Task :appprocessdebugmanifest. Manifest Merging Failed. See Console For More Info"