Android Studio - Gradle Manifest Merging Failed

前端 未结 4 879
长发绾君心
长发绾君心 2021-02-04 07:19

I am building a demo app using actionbar sherlock in android studio and i was facing problem , mentioned in following link :- Previous Problem

now after following the re

4条回答
  •  渐次进展
    2021-02-04 07:47

    Make sure that in all your build.gradle scripts the minSdkVersion and targetSdkVersion correspond to those you have in your manifests:

    android {
        defaultConfig { 
           minSdkVersion 10
           targetSdkVersion 16
        }
    }
    

    This worked for me, I hope it does the trick for you, cheers.

提交回复
热议问题